How to find and Insert a word or character between the words?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a paragraph like "AppleBallCatDogEggFish", how can I break these
things into separate words.

Anyone knows, Please help me.

Thanks in Advance.
 
If you typed the text this way and expect Word to fix it for you, then
you're out of luck. If you exported the text from another application,
then there may be a way you can make the other application insert a
space or other delimiter between the fields(?).
 
If each 'word' begins with an upper case letter as in your example, a
wiildcard search for

([a-z])([A-Z])
replace with
\1 \2
will split the text to words.

--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP

My web site www.gmayor.com

<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 
Hi Graham Mayor,

Excellent its working fine. My problem solved.

Thanks for your help. ;-)

PK

Graham Mayor said:
If each 'word' begins with an upper case letter as in your example, a
wiildcard search for

([a-z])([A-Z])
replace with
\1 \2
will split the text to words.

--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP

My web site www.gmayor.com

<>>< ><<> ><<> <>>< ><<> <>>< <>><<>

I have a paragraph like "AppleBallCatDogEggFish", how can I break
these things into separate words.

Anyone knows, Please help me.

Thanks in Advance.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top