在Javascript中将camelcase字符串的首字母大写

时间:2017-10-05 15:34:09

标签: javascript camelcasing

我试图获取一个驼峰大小写字符串(但第一个字母大写)。

我在JavaScript中使用以下正则表达式代码:

String.prototype.toCamelCase = function() {
return this.replace(/^([A-Z])|\s(\w)/g, function(match, p1, p2, offset) {
    if (p2) return p2.toUpperCase();
    return p1.toLowerCase();
});

但第一个字母转换为小写字母。

3 个答案:

答案 0 :(得分:2)

我不鼓励在JavaScript中扩展String,但无论如何以大写的第一个字母返回你的字符串,你可以这样做:

String.prototype.toCamelCase = function() {
    return this.substring(0, 1).toUpperCase() + this.substring(1);
};

<强>演示:

    String.prototype.toCamelCase = function() {
        return this.substring(0, 1).toUpperCase() + this.substring(1);
    };
    
var str = "abcde";
 console.log(str.toCamelCase());

答案 1 :(得分:1)

String.prototype.toCamelCase = function() {
  return this.replace(/\b(\w)/g, function(match, capture) {
    return capture.toUpperCase();
  }).replace(/\s+/g, '');
}

console.log('camel case this'.toCamelCase());
console.log('another string'.toCamelCase());
console.log('this is actually camel caps'.toCamelCase());

答案 2 :(得分:0)

String.prototype.toCamelCase = function() {
   string_to_replace = this.replace(/^([A-Z])|\s(\w)/g, 
      function(match, p1, p2, offset) {
         if (p2) return p2.toUpperCase();
         return p1.toLowerCase();
      });
   return string_to_replace.charAt(0).toUpperCase() + string_to_replace.slice(1);
}

一种简单的方法是手动大写第一个字符!