|
From: Adam L. (klakier.rsw.pl) <alu...@rs...> - 2002-04-24 10:36:19
|
Hello! How in Editor in Find/Replace using regular expression search multiline text. Sample I wish delete empty lines. I search double end_of_line and change to single end_of_line: Text to find: \x0D\x0A\x0D\x0A or \r\n\r\n New text: \x0D\x0A In Editor can't find end_of_line chars. (In Viewer its possible) In file regexpen.txt "Syntax of Regular Expressions" you write about modifier "m" Treat string as multiple lines. That is, change "^'' and "$'' from matching at only the very start or end of the string to the start or end of any line anywhere within the string, see also Line separators. but how swith it on ? Adam Lubszczyk mailto:alu...@rs... |