Delete LF
-
Hi,
I have some lines in the text that have LF without CR.
How can I delete just the LINE FEED (LF), when is without a CARRIAGE RETURN (CR) in a line ?.Example:
How are you ? LF
Thanks
-
You could use a negative lookbehind assertion, e.g.
(?<!\r)\n
How did you get mismatched line-endings in your file, anyway?