Wednesday, July 3, 2024
HomeLanguagesJavascriptJavaScript RegExp D Metacharacter

JavaScript RegExp \D Metacharacter

The RegExp \D Metacharacter in JavaScript is used to search non-digit characters i.e all the characters except digits. 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 non-digit characters 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 17 matches: G,e,e,k,s,f,o,r,G,e,e,k,s,@,_,_,$

Example 2: This example searches the non digit characters in the 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 6 matches: G,e,e,k,y,@

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.  

Shaida Kate Naidoo
am passionate about learning the latest technologies available to developers in either a Front End or Back End capacity. I enjoy creating applications that are well designed and responsive, in addition to being user friendly. I thrive in fast paced environments. With a diverse educational and work experience background, I excel at collaborating with teams both local and international. A versatile developer with interests in Software Development and Software Engineering. I consider myself to be adaptable and a self motivated learner. I am interested in new programming technologies, and continuous self improvement.
RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

Recent Comments