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 97faa4d commit 56f3241Copy full SHA for 56f3241
doc/Language/regexes.pod6
@@ -300,7 +300,7 @@ will generally not match individually. For example if you compose
300
C<"ü"> as C<"u\x[0308]">, that works just fine, but matching may surprise
301
you:
302
303
- say "u\x[0308]" ~~ /u/; # OUTPUT: «Nil»
+ say "u\x[0308]" ~~ /\c[LATIN SMALL LETTER U]/; # OUTPUT: «Nil»
304
305
To match the unmodified character, you can use the
306
L<C<:ignoremark>|#regex adverb,:ignoremark> adverb.
0 commit comments