I need to match the regex '.*' but in the GREP form where '.' dose not
match \n or \r. I considered ".*('\r'|'\n')" but that also gets the EOL
and I mustn't do that. I can't seem to a regex help page or I'd try for
[^\n\r]*.
Any help?
Benjamin Shropshire