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
Want To Be A Web Master?
If you want to be a Web Master, you will have to host your web site with an ISP (Internet Service Provider).
MaximumASP offers seven different configurations of dedicated servers to meet your Windows and .NET hosting needs.
Hosted on our multi-tiered Enterprise Class network, these servers provide the performance, security and reliability
you need to host your high end web sites and applications.
Visit MaximumASP
|