code • Regular Expression — Cool useful regEx - martindubenet/wed-dev-design GitHub Wiki
\r
and new line \n
by a comma character
Replace line breaks - Find:
(\r\n|\n|\r)
or more simply\n
- Replace by:
,
\r
and new line \n
by a comma character(\r\n|\n|\r)
or more simply \n
,