Loren Wilton wrote:

Try the rule with /s on the end of the re.  That will tend to turn newlines
into spaces.

People often seem to be confused by the /s modifier for regexes. All it does is allow '.' to match any character. Without the /s, '.' matches any character other than newline. So /s does nothing at all if you have no '.' in your regex.


--
Keith C. Ivey <[EMAIL PROTECTED]>
Washington, DC

Reply via email to