Hello,
I have string (loaded from file) containing many 'pages' each with "Name : ........multiple lines ending in CRLF, then Escape Formfeed". I want to use StringRegExp to select each page in turn. I started thinking the pattern should be "Name.*\e\f". But . does not include \r\n, so I looked at (?s), now . includes \r and \n but also includes \f which I don't want. How do I build the right selection character set?
Richard.