Answers for "how to regexp replace with uppercase on specific capture group in js"

0

how to regexp replace with uppercase on specific capture group in js

a.replace(/xxx(yyy)zzz/, (match, p1) => p1.toUpperCase()
Posted by: Guest on October-22-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language