--- Owen Watson <[EMAIL PROTECTED]> wrote: > OK, I asked for that. Could you tell me how you specify > caseless, multiline, etc etc.
In your case, simply attach (?im) at the start of your pattern, but it can be used more flexibly: regex.xxx(...,"(?ims)...",...,...) i: ignore case m: multi-line mode s: single-line mode etc For more details, see any decent manual on regular expressions. Sean Attention: PowerPro's Web site has moved: http://www.ppro.org Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/power-pro/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/
