Answers for "reset regex javascript"

0

reset regex javascript

// A JavaScript RegExp object is stateful.
// When the regex is global, if you call a method on the same regex object, it will start from the index past the end of the last match.
// When no more matches are found, the index is reset to 0 automatically.

reg.lastIndex = 0;
Posted by: Guest on August-26-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language