^p^$
but naturally if replace is
^p^t
I lose the first letter of the text string which I don't want
How can I construct either search and replace so that
^p
Alexander
turns into
^p
^tAlexander
and not
^p
^tlexander
Thanks in advance!
Use the search term
([^13])([A-Za-z])
and the replacement term
\1^t\2
However, if what you're trying to achieve is an indent at the start of
each paragraph, then don't do it by adding a tab. Instead, modify the
paragraph style to include a first-line indent.
--
Regards,
Jay Freedman
Microsoft Word MVP FAQ: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the
newsgroup so all may benefit.
I do need the tab, I was trying to export to Excel as a two column sheet but
a few of my several thousand items did not have product #s before them and I
didn't want them to inadvertently end up AS product #s.
Thanks again!!!
"Jay Freedman" wrote:
> .
>
A large # of the records I imported into the word doc initially it turns out
for some reason didn't parse a Return so I ended up with
Record1Record2
instead of
Record1
Record2
So I did
([a-z])([A-Z])
\1^p\2
and solved it in 10 seconds vs the hours of frustration I'd have ordinarily
faced.
Thanks!