
Originally Posted by
RichieRich$$$
dude I really didnt' understand, how can I get rid of the spaces between them? All I can do is replace abcd with "abcd", how do I replace
abcd
1234
ABCD
with
"abcd", "1234", "ABCD" ?????
Not quite sure I understand what you are asking .....
You don't want to get rid of the spaces in the phrases .....
But if you DO want to remove the spaces then search for:
""<--- space (without quotes)
and replace with nothing - meaning do not enter anything in the replace field.
If you are wanting to add the quote/comma/space/quote as in my example then search for "
^p" (without quotes) or whatever your program recognizes as the carriage return or new line symbol which finds all the ends of lines and replace with:
", " <-- exactly
That will
remove the carriage returns and put the
", " in between each phrase. You will then need to add
" to the beginning of the first phrase and make sure you only have
" at the end of the last phrase.
HTH
Bookmarks