JavaScript – RegExp lastIndex Property
The JavaScript RegExp lastIndex property specifies the index at which to start the next match, and only works if the g modifier is set.
The JavaScript RegExp lastIndex property specifies the index at which to start the next match, and only works if the g modifier is set.
The JavaScript RegExp multiline property returns “true” if the m modifier is set, and “false” if it is not set.
The JavaScript RegExp source property returns the text of the RegExp pattern.
The JavaScript RegExp test() method tests for a match in a string. If a match is found, it returns “true”, otherwise it returns “false”.
The JavaScript RegExp toString() method returns the string value of the regular expression.