Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

is the g required at the end of a regex expression

// the 'g' means a global search will be used
> 'aaa'.match(/a/g)
[ 'a', 'a', 'a' ]

// here, without the g, the expression only matches once
> 'aaa'.match(/a/)
[ 'a', index: 0, input: 'aaa' ]
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #required #regex #expression
ADD COMMENT
Topic
Name
1+6 =