Perlのucfirst()相当
String.prototype.toUpperCaseFirst = function() { return this.replace(/^[a-z]/i, function(match) { return match.toUpperCase(); }); };
これでいいかな?(誰
String.prototype.toUpperCaseFirst = function() { return this.replace(/^[a-z]/i, function(match) { return match.toUpperCase(); }); };
これでいいかな?(誰