JavaScript RegExp g Modifier
Complete RegExp Object Reference
Definition and Usage
When the g modifier is set the regular expression finds all occurrences of a
regular expression in a string.
Syntax
new RegExp("regexp","g")
OR
/regexp/g
|
| Parameter |
Description |
| regexp |
Required. The rest of the regular expression to use |
Tips and Notes
Note: When using the Regular Expression object and the g modifier is
set, the lastIndex property is set when executing a search. The lastIndex
property specifies the index (placement) in the string where to start the next
match.
Example
In the following code we will do a global search for "is":
var str = "Is this all there is?";
var patt1 = new RegExp("is","g");
|
The marked text below shows where the RegExp gets a match:
Try-It-Yourself Demos
g
How to use the "g" modifier to find all the occurrences of the regular
expression in a string using a string object.
g
How to use the "g" modifier to find all the occurrences of the regular
expression in a string using a regular expression object.
Complete RegExp Object Reference
 |
|
Get Your Diploma!
W3Schools' Online Certification Program is the perfect solution for busy
professionals who need to balance work, family, and career building.
The HTML Certificate is for developers who want to document their knowledge of HTML, XHTML, and CSS.
The ASP Certificate is for developers who want to document their knowledge of ASP, SQL, and ADO.
|
|