Skip to content

Instantly share code, notes, and snippets.

@sim642
Created February 13, 2015 20:48
Show Gist options
  • Select an option

  • Save sim642/587ea6e62bbfd6cd7ade to your computer and use it in GitHub Desktop.

Select an option

Save sim642/587ea6e62bbfd6cd7ade to your computer and use it in GitHub Desktop.
JS string unescape
JSON.parse('"' + str.replace(/\\0/g, "\\x00").replace(/\\v/g, "\\x0B").replace(/\\x/g, "\\u00").replace(/\\([^"\\\/bfnrtu])/g, '$1') + '"')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment