Skip to content

Instantly share code, notes, and snippets.

@thegreatape
Created February 12, 2011 22:01
Show Gist options
  • Save thegreatape/824176 to your computer and use it in GitHub Desktop.
Save thegreatape/824176 to your computer and use it in GitHub Desktop.
Replacing with literal $' expressions in JS regexes.
// returns "ab"
"abc".replace(/c/, "$'")
// returns "ab$'"
"abc".replace(/c/, function(){ return "$'";})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment