🔰alternation (or)

🚧 under construction

JSvalueobjectregexpattern ⟩ alternation (or)

(a|e|i)        // = [aei]

// quoting style: single (') -> double (")
let text = "'I'm the cook,' he said, 'it's my job.'";
text.replace(/(^|\W)'|'(\W|$)/g, '$1"$2'));
//            ╰─1──╯   ╰─2──╯ 
//  ⭐️ Groups that are not matched will be replaced by nothing.
// → "I'm the cook," he said, "it's my job."

Last updated

Was this helpful?