JavaScript RegExp \d Metacharacter
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