- 论坛徽章:
- 0
|
http://perldoc.perl.org/perlre.html 中的一段话:
By default, the "^" character is guaranteed to match only the beginning of the string, the "$" character only the end (or before the newline at the end), and Perl does certain optimizations with the assumption that the string contains only one line. Embedded newlines will not be matched by "^" or "$". You may, however, wish to treat a string as a multi-line buffer, such that the "^" will match after any newline within the string, and "$" will match before any newline. At the cost of a little more overhead, you can do this by using the /m modifier on the pattern match operator.
这不是说"$"应该是匹配newline前面的那个位置?
但是我试验的结果是:
- $_ = "abc\ndef";
- /c$def/m #yes, 这个是怎么回事呢? \n到哪去了?
- /c\n$def/m # yes
- /c$\ndef/m #no
复制代码
从这上面的结果,不说明'$'匹配的是newline后面的那个位置吗(跟^一样了)?
跟前面的那段话相反了。
我的perl版本:
This is perl, v5.8.3 built for MSWin32-x86-multi-thread[/code] |
|