Match Any character


The . (dot) is a meta-character that will be ready to match any character. As opposed to the Perl regular expressions in Perl 6 this includes newlines If you want to match any character except newline you can use the \N special character class.

There are also some non-alnum characters that have special meaning though their meaning might be (a bit) different than in PCRE: A . can match any character. Even newline.

examples/regex2/match_any_character.p6
#!/usr/bin/perl6
use v6;


my $str = 'The black cat climbed to the green tree.';


if ($str ~~ m/c./) {
    say "Matching '$/'";      # 'ck'
}

my $text = "
The black cat
climebed the greeen tree";

if ($text ~~ m/t./) {
    say "Matching '$/'";     # 't '  with the second ' on a new line
}


if ($text ~~ m/t\N/) {
    say "Matching '$/'";     # 'th'    of the word 'the'
}

Copyright 2006, 2007, 2008, 2009, 2010 Gabor Szabo http://szabgab.com/ Index | TOC
If you are interested in on-site trainings by the author, please contact me directly.

Online courses:

Would you like to get
updated when I publish
the next article?

Follow me:

Google Plus Twitter RSS feed