hi,
I cant seem to get textpipe to merge multiple lines into a single line, any clues how?
thnx
Merge Multiple Lines into a Single line
Moderators: DataMystic Support, Moderators, DataMystic Support, Moderators, DataMystic Support, Moderators
- DataMystic Support
- Site Admin
- Posts: 2227
- Joined: Mon Jun 30, 2003 12:32 pm
- Location: Melbourne, Australia
- Contact:
Re: Merge Multiple Lines into a Single line
'Merge' has many meanings. What do you mean?
You could simply remove all Cr/LFs by searching for
replace with nothing.
You could simply remove all Cr/LFs by searching for
Code: Select all
\r\n
-
- Posts: 987
- Joined: Sun Dec 09, 2007 2:49 am
- Location: UK
Re: Merge Multiple Lines into a Single line
Or by a space...
Code: Select all
Replace [\r\n] with [ ]
[ ] Match case
[ ] Whole words only
[ ] Case sensitive replace
[ ] Prompt on replace
[ ] Skip prompt if identical
[ ] First only
[ ] Extract matches
David