JavaScript RegExp . Metacharacter
Example
Do a global search for "h.t" in a string:
var str = "That's hot!";
var patt1 = /h.t/g;
The marked text below shows where the expression gets a match:
That's hot!
Try it yourself »
Definition and Usage
The . metacharacter is used to find a single character, except newline or other line terminators.
Browser Support
The . metacharacter is supported in all major browsers.
Syntax
new RegExp("regexp.")
or simply:
/regexp./
Syntax with modifiers
new RegExp("regexp.","g")
or simply:
/regexp./g
JavaScript RegExp Object