Wednesday, September 25, 2024
Google search engine
HomeLanguagesJavascriptJavaScript RegExp d Metacharacter

JavaScript RegExp \d Metacharacter

The RegExp \d Metacharacter in JavaScript is used to search digit characters. It is the same as [0-9]. 

Syntax: 

/\d/ 

or

new RegExp("\\d")

Syntax with modifiers:

/\d/g 

or

new RegExp("\\d", "g")

Example 1: This example searches the digits in the whole string. 

Javascript




function geek() {
    let str1 = "neveropen@_123_$";
    let regex4 = /\d/g;
    let match4 = str1.match(regex4);
 
    console.log("Found " + match4.length
        + " matches: " + match4);
}
geek()


Output

Found 3 matches: 1,2,3

Example 2: This example searches the digits in the whole string. 

Javascript




function geek() {
    let str1 = "Geeky@128";
    let regex4 = new RegExp("\\d", "g");
    let match4 = str1.match(regex4);
 
    console.log("Found " + match4.length
        + " matches: " + match4);
}
geek();


Output

Found 3 matches: 1,2,8

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

Previous article
Next article
RELATED ARTICLES

Most Popular

Recent Comments