-- Start
我们已经知道了在正常情况下,点号(.)能够匹配除换行符以外的任何字符。事实上这句话并不准确,确切的说,点号(.)能够匹配除换行符以外的任何单个代码点。由于处于辅助平面内的字符由两个代码点构成,所以,为了匹配这些字符,我们需要两个点号。幸运的是,这些字符我们很少使用,基本上我们可以不考虑。看到这里,如果你此时的想法是 what the hell are you talking about? 说明你还不了解 Unicode 编码, 请参考本人的另一篇博客UTF-16 编码简介
#!/usr/bin/perl my $testText = "français"; if($testText =~ m/fran..ais/) { print "finds the word."; } else { print "cannot find the word."; }
--更多参见:正则表达式精萃
-- 声 明:转载请注明出处
-- Last Updated on 2012-05-09
-- Written by ShangBo on 2012-05-09
-- End