We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 550ce55 commit dcaebf0Copy full SHA for dcaebf0
doc/Language/regexes.pod6
@@ -978,7 +978,8 @@ C<\K>.
978
say 'abc' ~~ / <(a <( b )> c)>/; # OUTPUT: «「bc」»
979
980
As the example above, you can see C«<(» sets the start point and C«)>» sets the
981
-endpoint. They are actually independent.
+endpoint; since they are actually independent each other, the inner-most start point
982
+wins (the one attache to C<b>) and the outer-most end wins (the one attached to C<c>).
983
984
=head1 Substitution
985
0 commit comments