JavaScript RegExp d Metacharacter
Clash Royale CLAN TAG#URR8PPP
<!--
main_leaderboard, all: [728,90][970,90][320,50][468,60]-->
JavaScript RegExp d Metacharacter
❮ JavaScript RegExp Object
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