Skip to content

Instantly share code, notes, and snippets.

@shinsaka
Created February 2, 2016 03:30
Show Gist options
  • Save shinsaka/922a424f78d9da56a682 to your computer and use it in GitHub Desktop.
Save shinsaka/922a424f78d9da56a682 to your computer and use it in GitHub Desktop.
Replace C like comment block sample
text = "
/*
* multi-line comment block
*/
void main() {
/* single-line comment block */
}"
puts text.gsub(/\/\*(?:(?!\*\/).)*\*\//m, '')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment