in reply to Re: How do I match lines of 40 characters long in a block of text?
in thread How do I match lines of 40 characters long in a block of text?

The /m modifier only changes the behavior of "^" and "$" (whether they match at embedded newlines). Since your regex doesn't use either of those, the /m has no effect.

-- Mike

--
just,my${.02}

  • Comment on Re: Re: How do I match lines of 40 characters long in a block of text?