Skip to content

Instantly share code, notes, and snippets.

@allex
Created July 29, 2012 14:03
Show Gist options
  • Save allex/3199078 to your computer and use it in GitHub Desktop.
Save allex/3199078 to your computer and use it in GitHub Desktop.
removing c-styled comments using javascript
// vim: set ft=javascript
// removing c-styled comments using javascript
function removeComments(str) {
// Remove all C-style slash comments
str = str.replace(/(?:^|[^\\])\/\/.*$/gm, '');
// Remove all C-style star comments
str = str.replace(/\/\*[\s\S]*?\*\//gm, '');
return str;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment