THE WORLD'S LARGEST WEB DEVELOPER SITE
HTMLCSSJAVASCRIPTSQLPHPBOOTSTRAPJQUERYANGULARXML
 

JavaScript RegExp . Metacharacter

RegExp Object Reference JavaScript RegExp Object

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

Internet Explorer Firefox Opera Google Chrome Safari

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

RegExp Object Reference JavaScript RegExp Object