If you have a file or a string that you want to replace every new line with a comma follow the below steps,
- Open the file in Sublime Text Editor,
Example file with multiple lines
This is my Line 1 This is my Line 2 This is my Line 3 This is my Line 4 This is my Line 5
- Now press Control + H (or Command + H on macOS),
- Make sure you select .* button to enable RegEx,
- Now in Find: add \n (if windows encoding file) \r\n (if mac encoding)
- Add Replace: as "," (without the quotes).
- Click on REPLACE ALL! Thats it!
Output:
This is my Line 1,This is my Line 2,This is my Line 3,This is my Line 4,This is my Line 5
⛏️ Note: If you want to a space after each comma, just add a space after the comma ", " in Replace.
Let's me give you a gif demo to make it easy to follow,

How to replace new line with comma in Sublime Text
More Posts related to Sublime-Text,
- How to add ruler in Sublime Text tab window
- Change Sublime Text 3 white background color theme
- Replace new line with comma in Sublime Text Editor
- Sublime Text 3 Convert Case to Upper, Lower, Title or Swap
- How to add Multiple Rulers in Sublime Text
- How to install Packages in Sublime Text Editor
- How to display File CR LF Newline Characters in Sublime Text
- Steps to Compare Two files in Sublime Text Side-by-Side
- How to Set Permanent ruler in Sublime Text
- How to shuffle lines randomly in Sublime Text
- Word count in Sublime Text Editor
More Posts:
- Copy all .vcf Mobile Contacts files into one .vcf - HowTos
- How to verify if java is installed on the computer and get version detail - Java
- Unable to find image docker latest locally - Docker
- Android M cannot run app using play button : Android Studio - Android
- How to create SharePoint Document Library - SharePoint
- macOS say command text to speech using various voices and languages - MacOS
- Write javaScript code in Swedish using FikaScript - JavaScript
- Java Read and Write Properties file with Examples - Java