in reply to Re: Regex Help
in thread Regex Help
Ummm... no. The '/m' modifier only effects the matching of '^' and '$' (when used to match beginning-of-line, end-of-line). It allows these two symbols to match newlines within the string.
The regex m/\(([^)]*)\)/g, will match across new lines. More specifically, the regex m/[^)]/ will match a newline quite happily. if ( "\n" =~ /[^)]/ ) {print "Yes\n"} Yes
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: Regex Help - Correct use of /m
by demerphq (Chancellor) on Sep 07, 2001 at 03:26 UTC |