Hi,
If i have the following text in my eclipse editor:
Text Line 1
Text Line 2
I would like to concatenate the text into:
Text Line 1Text Line 2
My first idea was to search for carriage return character '\n' and replace it with '' to concatenate it.
I tried using the search function of eclipse, but it does not recognize carriage return character.
Are there any other editor that can do this ?
Thanks =)