We can make use of the replace() method to replace all the newlines from a String. Let us take a look at it by an example.
Example 1:
const egStr = 'Hello \
and \
Welcome \
to \
Code2care!';
const strWithoutNewLines = egStr.replace(/[\r\n]/gm, '');
console.log(strWithoutNewLines);
Let's see another example where we have newline characters (EOL) within our string.
Example 2:
const egStr = "Today \n is a good \n day!\n";
const strWithoutNewLines = egStr.replace(/[\r\n]/gm, '');
console.log(strWithoutNewLines);
Note: As the newline character can be a \n, \r or a \r\n, it is better to have a Regex that matches and removes all of such characters.
EOL Character | Description | Usage |
---|---|---|
\n | Newline character (Line Feed) | Used in Unix and Linux Systems. |
\r | Carriage Return | Used in older Macintosh Systems. |
\r\n | Carriage Return + Newline (CRLF) | Used in Windows and DOS Environments. |

-
Facing issues? Have Questions? Post them here! I am happy to answer!
More Posts related to JavaScript,
- Get Device Screen Width and Height using javaScript
- How to Print from JavaScript HTML using window.print
- Send Extra Data with Ajax Get or Post Request
- How to get UTC (GMT) time using JavaScript
- How to detect Browser and Operating System Name and Version using JavaScript
- Fix: Error: error:0308010C:digital envelope routines::unsupported NodeJs/Vue/React
- How to send email from JavaScript HTML using mailto
- Remove items from JavaScript array
- JavaScript : Get current page address
- Add Animated Scrolling to Html Page Title Script
- [javaScript] Convert text case to lowercase
- JavaScript date in yyyy-MM-dd format
- Power of Print Statements in JavaScript: A Comprehensive Guide
- Submit html form on dropdown menu value selection or change using javascript
- Write javaScript code in Swedish using FikaScript
- Javascript convert text case from uppercase to lowercase
- Excel Fix: SECURITY RISK Microsoft has blocked macros from running because the source of this file is untrusted.
- JavaScript: Count Words in a String
- Meaning of javascript:void(0) explained with example
- JavaScript: Generate Random Numbers between 1 and 3
- npm WARN saveError ENOENT: no such file or directory, open /mnt/c/package.json
- How to get current URL Location using Javascript HTML
- Fix: SyntaxError: The requested module does not provide an export named default
- Fix: Error: Cannot find module /node-examples/init
- JavaScript: Check if variable is a number
More Posts:
- Python range() function examples - Python
- How to check if a port is in use using terminal [Linux or macOS] - MacOS
- Install postgres Client using apt-get command - Ubuntu
- Clear Screen shortcut macOS Terminal - MacOS
- Indent/Prettify HTML File in Notepad++ - NotepadPlusPlus
- [Android Studio] MainActivity does not exist - Android-Studio
- Fix Error Code: 80090030 in Microsoft Outlook/Teams - Microsoft
- SharePoint Designer Workflow error - Coercion Failed: Input cannot be null for this coercion - SharePoint