首字母大写并删除字符串

时间:2016-01-18 11:12:14

标签: javascript regex spaces capitalize

获得一些代码来大写字符串中每个单词的第一个字母。有人可以帮我更新它,这样一旦第一个字母被封顶,它也会删除字符串中的所有空格。

return function (str) {
    return str.replace(/\w\S*/g, function(txt) {
        return txt.charAt(0).toUpperCase() + txt.substr(1);
    });
}

4 个答案:

答案 0 :(得分:5)

试试这个:

var input = 'lorem ipsum dolor sit amet';
// \w+ mean at least of one character that build word so it match every
// word and function will be executed for every match
var output = input.replace(/\w+/g, function(txt) {
  // uppercase first letter and add rest unchanged
  return txt.charAt(0).toUpperCase() + txt.substr(1);
}).replace(/\s/g, '');// remove any spaces

document.getElementById('output').innerHTML = output;
<div id="output"></div>

您还可以使用一个正则表达式和一个替换:

var input = 'lorem ipsum dolor sit amet';
// (\w+)(?:\s+|$) mean at least of one character that build word
// followed by any number of spaces `\s+` or end of the string `$`
// capture the word as group and spaces will not create group `?:`
var output = input.replace(/(\w+)(?:\s+|$)/g, function(_, word) {
  // uppercase first letter and add rest unchanged
  return word.charAt(0).toUpperCase() + word.substr(1);
});

document.getElementById('output').innerHTML = output;
<div id="output"></div>

答案 1 :(得分:2)

您可以使用简单的帮助函数,如:

return function (str) {
    return str.replace(/\w\S*/g, function(txt) {
        return txt.charAt(0).toUpperCase() + txt.substr(1);
    }).replace(/\s/g, "");
}

答案 2 :(得分:0)

Page有一个很好的示例,说明如何在JavaScript中对字符串中的每个单词进行大写:http://alvinalexander.com/javascript/how-to-capitalize-each-word-javascript-string

答案 3 :(得分:0)

作为替代方案,您可以在空格处分割字符串,将每个单词大写,然后再将它们重新组合在一起:

"pascal case".split(' ').map(word => word.charAt(0).toUpperCase() + word.substring(1) ).join('')