I have a string like this:
BEGIN\n\n\n\nTHIS IS A STRING\n\nEND
And I want to remove all the new line characters and have the result as :
BEGIN THIS IS A STRING END
How do i accomplish this? The standard API functions will not work because of the escape sequence in my experience.
\n? No actual line breaks? – Bart Kiers Sep 8 '11 at 17:57