Skip to content

Instantly share code, notes, and snippets.

@sspencer
Created March 31, 2014 22:54
Show Gist options
  • Save sspencer/9904215 to your computer and use it in GitHub Desktop.
Save sspencer/9904215 to your computer and use it in GitHub Desktop.
var crappy_xml = "<tag>some forget to encode & others &lt;do not&gt;</tag>";
// negative lookahead
crappy_xml.replace(/&(?!(\S+;))/g, '&amp;')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment