Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Unsupported RCPE features #7

Open
Vovan-VE opened this issue Aug 5, 2015 · 2 comments
Open

Unsupported RCPE features #7

Vovan-VE opened this issue Aug 5, 2015 · 2 comments

Comments

@Vovan-VE
Copy link

Vovan-VE commented Aug 5, 2015

Illegal/unsupported escape sequense:

  • \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

This named group reference is not supported

  • \k<name>, \k'name'
  • (?P=name)

Unclosed options group

  • (?N), (?+N), (?-N), where N is a group number (absolute or relative)
  • (?P>name), (?&name) - same error message
  • (?|...) - same error message

Conditional references are not supported

  • (?(cond)yes|no)
@cburschka-pwc
Copy link

cburschka-pwc commented Apr 18, 2017

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.

@juliangut
Copy link

I'm facing the problem with backreferences

image

Is this issue of any priority?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants