You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This also includes the /x modifier (which ignores whitespace and inline comments in the pattern), leading to a) false-positive errors in comments and b) marking \\# as a redundant escape, even though it is required when including a literal # in an extended pattern.
\g...
family:\gn
,\g{N}
,\g{-N}
,\g<N>
,\g<-N>
,\g'N'
,\g'-N'
,\g<name>
,\g'name'
,\g{name}
\k{name}
\N
,\R
,\K
,\C
\k<name>
,\k'name'
(?P=name)
(?N)
,(?+N)
,(?-N)
, whereN
is a group number (absolute or relative)(?P>name)
,(?&name)
- same error message(?|...)
- same error message(?(cond)yes|no)
The text was updated successfully, but these errors were encountered: