How to delete end-of-line characters #5575
-
Windows: I have a multi-line file that I want to convert to a single-line file with each line separated with a |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 1 reply
-
Internal storage for RegEx has only LF's (file will be saved with CR LF of course). |
Beta Was this translation helpful? Give feedback.
-
|
Beta Was this translation helpful? Give feedback.
-
@MiroslavMatas user wanted the opposite: replace EOLs with commas. |
Beta Was this translation helpful? Give feedback.
-
Converted to 'discussion'. |
Beta Was this translation helpful? Give feedback.
Internal storage for RegEx has only LF's (file will be saved with CR LF of course).
so replace
\n
to,
. it works, I tested.