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
Make your web applications look like a million bucks
|
|
Most web applications today use boring methods to present data to their viewers using grids or simple HTML tables. FusionCharts induces "life" into the web applications by converting monotonous data into lively charts, gauges & maps.
FusionCharts works with all technologies like ASP, ASP.NET, PHP, ColdFusion, Ruby on Rails, JSP, HTML pages etc.
and connects to any database to render animated & interactive charts. It takes less than 15 minutes and no expertise
whatsoever to build your first chart and just a glance of it to captivate your audience. This fact is endorsed by our
12,000 customers and 150,000 users which include a majority of the Fortune 500 companies.
And yeah, your applications could look like a million bucks by spending just $69.
So go ahead, download your
copy of FusionCharts and start "wow-ing" your customers now!
|
|