Jesse Houwing <[EMAIL PROTECTED]> wrote: > If I'm not mistaking /regex/im will let . match newlines.
It's the /s modifier that causes '.' to match newlines. The /m modifier is the one that causes '^' and '$' to match the beginning and end (or newline at end) of lines rather than the beginning and end (or newline at end) of the whole string. -- Keith C. Ivey <[EMAIL PROTECTED]> Washington, DC
