jbyrne: -------------------------------------------------------------------------------- How to you specify a multiline regular expression in the Find dialog?
I've tried using m, \m, (m). Nothinng seems to work. Also I noticed that you can't do regex in Find in Files dialog - this is really needed. Thanks JB -------------------------------------------------------------------------------- Hi, the search and replace engine in PSPad only works linewise, hence the match cannot reach across multiple lines. The mentioned multiline flag m is then irrelevant, as it only lets ^ and $ mach on line boundaries (in multiline engines, of course). - it would be set via (?m) To some extent, you may use an extension script, such as phReplace: http://forum.pspad.com/read.php?2,34061 which support multiline expressions and also replacing in all open files. vbr -- <http://forum.pspad.com/read.php?2,53728,53735> PSPad freeware editor http://www.pspad.com
