
Laurent_R
Veteran
/ Moderator
Jan 22, 2013, 1:57 PM
Post #31 of 31
(17490 views)
|
Re: [Stefanik] Match characters in middle and end string
[In reply to]
|
Can't Post
|
|
Perl documentation on Regex modifiers: - m : Treat string as multiple lines. That is, change "^" and "$" from matching the start or end of the string to matching the start or end of any line anywhere within the string. - s : Treat string as single line. That is, change "." to match any character whatsoever, even a newline, which normally it would not match. Used together, as /ms, they let the "." match any character whatsoever, while still allowing "^" and "$" to match, respectively, just after and just before newlines within the string.
|