Skip to content

Instantly share code, notes, and snippets.

@st98
Last active August 29, 2015 14:03
Show Gist options
  • Save st98/cf125d85ffa9741d99ba to your computer and use it in GitHub Desktop.
Save st98/cf125d85ffa9741d99ba to your computer and use it in GitHub Desktop.
Python の str#title みたいな感じで。
String.prototype.title = function () {
return this.replace(/[A-Za-z]+/g, function (m) {
return m[0].toUpperCase() + m.slice(1).toLowerCase();
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment