code • Regular Expression — Cool useful regEx - martindubenet/wed-dev-design GitHub Wiki
Replace line breaks \r and new line \n by a comma character
- 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,