* Mueller Stefan [2007.01.30 07:56]:
> How can I delete a control line feed in a string

:s/\\n//

Should do what you want. Insert range as
appropriate.

Or

:let value = substitute(string, "\\\\n","","g")

:h substitute()

Discusses this specific case.

HTH,

-- 
JR

Reply via email to