Skip to content

Instantly share code, notes, and snippets.

@victorkurauchi
Created August 21, 2014 23:36
Show Gist options
  • Select an option

  • Save victorkurauchi/d64b1e7d1d53d4b66991 to your computer and use it in GitHub Desktop.

Select an option

Save victorkurauchi/d64b1e7d1d53d4b66991 to your computer and use it in GitHub Desktop.
function snake(string) {
var my = string.replace(/([ ])/g, function($1) {
//alert($1);
return "_";
});
alert(my);
return my.replace(/-/g, '');
}
alert(snake('Simeticona 125mg com 10 cápsulas gelatinosas - teuto - genérico'));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment