JavaScript RegExp \d Metacharacter
Example
Do a global search for digits:
var str = "Give 100%!";
var patt1 = /\d/g;
The marked text below shows where the expression gets a match:
Give 100%!
Try it Yourself »
Definition and Usage
The \d metacharacter is used to find a digit from 0-9.
Browser Support
Expression | |||||
---|---|---|---|---|---|
\d | Yes | Yes | Yes | Yes | Yes |
Syntax
new RegExp("\\d")
or simply:
/\d/
Syntax with modifiers
new RegExp("\\d","g")
or simply:
/\d/g
JavaScript RegExp Object