From http://www.w3schools.com (Copyright Refsnes Data)

JavaScript RegExp . Metacharacter


RegExp Object Reference JavaScript RegExp Object

Definition and Usage

The . metacharacter is used to find a single character, except newline or other line terminators.

Syntax

new RegExp("regexp.")

or simply:

/regexp./


Example

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 »


RegExp Object Reference JavaScript RegExp Object

From http://www.w3schools.com (Copyright Refsnes Data)