We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The most lightweight way (+Speed) implement flag to enable capturing data by default for all quantifiers *?+#
*?+#
@c ... enabled ...
@c ... enabled ... @c ... disabled ...
example:
@c12*5 a?d 34+7
12005 and 3417
Speed - is most important, because the regex engine much more powerful anyway.
v2:
@c ... @
12@c*@7
12457
v3 (overhead):
@c
()
@c12(*)7
\(\)
(())
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The most lightweight way (+Speed) implement flag to enable capturing data by default for all quantifiers
*?+#
@c ... enabled ...
@c ... enabled ... @c ... disabled ...
example:
@c12*5 a?d 34+7
12005 and 3417
Alternative
Speed - is most important, because the regex engine much more powerful anyway.
v2:
@c ... @
12@c*@7
- >12457
accessor: $nv3 (overhead):
@c
flag - switch to enable()
for capturing@c12(*)7
- >12457
accessor: $1 - 45\(\)
or(())
The text was updated successfully, but these errors were encountered: