🔰replace pattern

JSvalueobjectregexpattern ⟩ replace pattern

// global vs non-global replace
"Borobudur".replace(/[ou]/ , "a")    // Barobudur
"Borobudur".replace(/[ou]/g, "a")   // Barabadar

// replace pattern
const names = "Liskov, Barbara\nMcCarthy, John\nWadler, Philip"
names.replace(/(\w+), (\w+)/g, "$2 $1")    // unnamed capture $n
// Barbara Liskov
// John McCarthy
// Philip Wadler

// 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?