Syntax
var variable = new RegExp(pattern, flags)
The RegExp() object represents a regular expression that is used for pattern matching.
The creation of the object takes pattern and flags parameters.
The pattern is a valid regular expression. The flags are either or both g (global) and i (ignore case).
Properties and Methods of the RegExp() Object
Property/MethodDescription
RegExp.$*Represents multiline
RegExp.$&Represents lastmatch
RegExp.$_Represents input
RegExp.$`Represents leftContext
RegExp.$'Represents rightContext
RegExp.$+Represents lastParen
RegExp.$1,$2,...$9Represents substring of matches
compile()Compiles a regular expression
exec()Executes the search for a match in a specified string
global_Specifies whether to check the expressions against all possible matches
ignoreCaseWhether case is ignored or not during a string search
inputString that is matched
lastIndex_Specifies the index at which to start matching the next string.
lastMatchLast matched characters
lastParenThe last parenthesized substring match
leftContextThe substring preceding the most recent match
multilineSpecifies whether to search on multiple lines
rightContextThe substring following the most recent match
sourceThe string pattern
test()Tests for a string match