๐ฐinline modifier
๐ง under construction
Last updated
Was this helpful?
๐ง under construction
Last updated
Was this helpful?
Was this helpful?
JS โฉ value โฉ object โฉ regex โฉ pattern โฉ inline modifier
(?x) // Turn on modifier x until the end of the containing group
(?-x) // Turn off modifier x until the end of the containing group
(?x:...) // Turn on modifier x for the section
(?-x:...) // Turn off modifier x for the section
// Relevent modifiers are i (ignore case) and x (extended regex).
// You may group more than one modifier together
// code