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 84e80fa commit 3c0da4fCopy full SHA for 3c0da4f
doc/Language/regexes.pod
@@ -788,9 +788,9 @@ match C<'foo'> and not C<'Foo'>. The C<:i> adverb makes matching
788
case-insensitive:
789
790
$_ = 'STAR TREK Into Darkness';
791
- s/Trek Into/TREK\: Into/; # Someone forgot the colon?
+ s/'Trek Into'/TREK\: Into/; # Someone forgot the colon?
792
.say; # STAR TREK Into Darkness
793
- s:i/Trek into/TREK\: Into/; # Thereifixedit
+ s:i/'Trek into'/TREK\: Into/; # Thereifixedit
794
.say; # STAR TREK: Into Darkness
795
796
If you want more in-depth descriptions of what these adverbs are actually
0 commit comments