What exactly do you need to replace with \t? The '\rfieldname:
'? If so, then
search pattern:
\r[^:]+:+<space>
replace pattern:
\t
Figuring out what the above search pattern matches is left as a
(not too difficult) exercise for the reader. 8^) The manual
sections on character classes and quantifiers will lead you
through it. Refining it to handle, say, multiple space or white
space characters after the colon is left as a further exercise.
--
Christopher Bort
<top...@thehundredacre.net>
<http://www.thehundredacre.net/>
> I tried the search string you gave me. Many Thanks. Unfortunately,
> the search found nothing. What you described is exatly what I need to
> do to make a Tab Deliminated document that will open in MS Excel.
> However, when I pasted your search into my document and clicked
> "Search" (just to test the Search part) I got nothing.
Replace <space> in my pattern with a literal space character.