function spinalCase(str) {
  // "It's such a fine line between stupid, and clever."
  // --David St. Hubbins
  str = str.replace(/_/g," ")
        .replace(/([A-Z])/g," $1")
        .replace(/^\s/,"")
        .replace(/\s+/g,"-")
        .toLowerCase();
  return str;
}
spinalCase('This Is Spinal Tap');

  

posted on 2016-12-19 18:34  梦如影  阅读(207)  评论(0)    收藏  举报