Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save arulprabakaran/762f69b314868c022d146b9cc264ae48 to your computer and use it in GitHub Desktop.
Save arulprabakaran/762f69b314868c022d146b9cc264ae48 to your computer and use it in GitHub Desktop.
Javascript convert camelcase to dash (hyphen)
function camelCaseToDash( myStr ) {
return myStr.replace( /([a-z])([A-Z])/g, '$1-$2' ).toLowerCase();
}
var myStr = camelCaseToDash( 'thisString' );
alert( myStr ); // => this-string
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment