I have this type of string in a text file:
First line
Second lineother line
another linemore line
next line
How can I append all the string into a single line ?
the required output is :
First line second line other line another line more line next line
I had try removing white space and append string tutorial but still did not get the required output.