mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
7 lines
731 B
Python
7 lines
731 B
Python
import re
|
|
|
|
re.compile(r"(?P<group1>delicious )?(?(group1)hamburger|milkshake)");
|
|
re.compile(r"(?P<group1>delicious )?(?(1)hamburger|milkshake)");
|
|
re.compile(r"(?P<group1>delicious )?(?<error descr="This kind of group reference condition is not supported in this regex dialect">('group1')</error>hamburger|milkshake)");
|
|
re.compile(r"<error descr="This named group syntax is not supported in this regex dialect">(?<group1>delicious )</error>?(?<error descr="This kind of group reference condition is not supported in this regex dialect">(<group1>)</error>hamburger|milkshake)");
|
|
re.compile(r"<error descr="This named group syntax is not supported in this regex dialect">(?'group1'delicious )</error>?(?(group1)hamburger|milkshake)"); |