Saturday, September 21, 2024
Google search engine
HomeLanguagesJavascriptJavaScript RegExp n Metacharacter

JavaScript RegExp \n Metacharacter

The RegExp \n Metacharacter in JavaScript is used to find the newline character. If it is found it returns the position of the character else it returns -1.

Syntax: 

/\n/ 

or

new RegExp("\\n")

Example 1: This example searches for the newline character in the string. 

Javascript




function geek() {
    let str1 = "neveropen@_123_$";
    let regex4 = /\n/;
    let match4 = str1.search(regex4);
    if (match4 == -1) {
        console.log("No newline characters present. ");
    }
    else {
        console.log("Index of newline character: " + match4);
    }
}
geek();


Output

No newline characters present. 

Example 2: This example searches the position of the newline character in the string. 

Javascript




function geek() {
    let str1 = "123ge\neky456";
    let regex4 = new RegExp("\\n");
    let match4 = str1.search(regex4);
    console.log(" Index of newline character: " + match4);
}
geek();


Output

 Index of newline character: 5

Supported Browsers: The browsers supported by RegExp \n Metacharacter are listed below:

  • Google Chrome
  • Apple Safari
  • Mozilla Firefox
  • Opera
  • Internet Explorer

We have a complete list of Javascript RegExp expressions, to check those please go through this JavaScript RegExp Complete Reference article.

We have a Cheat Sheet on Javascript where we covered all the important topics of Javascript to check those please go through Javascript Cheat Sheet-A Basic guide to JavaScript.  

Whether you’re preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, neveropen Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we’ve already empowered, and we’re here to do the same for you. Don’t miss out – check it out now!

RELATED ARTICLES

Most Popular

Recent Comments