Saturday, October 25, 2025
HomeLanguagesJavascriptJavaScript RegExp r Metacharacter

JavaScript RegExp \r Metacharacter

The RegExp \r Metacharacter in JavaScript is used to find the carriage return character (Carriage return means to return to the beginning of the current line without advancing downward). If it is found it returns the position else it returns -1. 

Syntax: 

/\r/ 

or

new RegExp("\\r")

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

Javascript




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


Output

No carriage return character present. 

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

Javascript




function geek() {
    let str1 = "123ge\reky456";
    let regex4 = new RegExp("\\r");
    let match4 = str1.search(regex4);
 
    console.log(" Index of carriage return character: "
        + match4);
}
geek();


Output

 Index of carriage return character: 5

Supported Browsers: The browsers supported by RegExp \r 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.  

RELATED ARTICLES

Most Popular

Dominic
32361 POSTS0 COMMENTS
Milvus
88 POSTS0 COMMENTS
Nango Kala
6728 POSTS0 COMMENTS
Nicole Veronica
11892 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11954 POSTS0 COMMENTS
Shaida Kate Naidoo
6852 POSTS0 COMMENTS
Ted Musemwa
7113 POSTS0 COMMENTS
Thapelo Manthata
6805 POSTS0 COMMENTS
Umr Jansen
6801 POSTS0 COMMENTS