我有一个大写句子的功能。但它无法大写诸如此类的名称
ConcurrentDictionary<TKey, TValue>
我期待:
D'agostino, Fred
D'agostino, Ralph B.
D'allonnes, C. Revault
D'amanda, Christopher
功能:
D'Agostino, Fred
D'Agostino, Ralph B.
D'Allonnes, C. Revault
D'Amanda, Christopher
有人可以帮我解决这个问题吗?我尝试过使用getCapitalized(str){
var smallWords = /^(a|an|and|as|at|but|by|en|for|if|in|nor|of|on|or|per|the|to|vs?\.?|via)$/i;
return str.replace(/[A-Za-z0-9\u00C0-\u00FF]+[^\s-]*/g, function (match, index, title) {
if (index > 0 && index + match.length !== title.length &&
match.search(smallWords) > -1 && title.charAt(index - 2) !== ":" &&
(title.charAt(index + match.length) !== '-' || title.charAt(index - 1) === '-') &&
(title.charAt(index + match.length) !== "'" || title.charAt(index - 1) === "'") &&
title.charAt(index - 1).search(/[^\s-]/) < 0) {
return match.toLowerCase();
}
if (match.substr(1).search(/[A-Z]|\../) > -1) {
return match;
}
return match.charAt(0).toUpperCase() + match.substr(1);
});
}
,但没有用。
答案 0 :(得分:3)
我不确定您需要处理的所有用例,但对于您提出的问题,您可以使用寻找字边界的正则表达式:
function capitalizeName(name) {
return name.replace(/\b(\w)/g, s => s.toUpperCase());
}
console.log(capitalizeName(`D'agostino, Fred`));
console.log(capitalizeName(`D'agostino, Ralph B.`));
console.log(capitalizeName(`D'allonnes, C. Revault`));
console.log(capitalizeName(`D'amanda, Christopher`));
答案 1 :(得分:0)
我使用此功能将名称大写。 该参数可用于在大写之前强制小写,否则可能会得到奇怪的结果(BaLlERinO,LaMbORGhini ..)
它使用regexp在['`’'.-]中查找空格或特殊字符。 后跟任何不在ASCII组0-97和123-223中的字符,因为只有符号,数字和大写字母,但是此字符不得在其后跟其他空格或字符串结尾(以避免出现类似Ciccio的结果)
String.prototype.capitalize = function (lower) {
return (lower ? this.toLowerCase() : this).replace(/(?:^|\s|['`‘’.-])[^\x00-\x60^\x7B-\xDF](?!(\s|$))/g, function (a) {
return a.toUpperCase();
});
};
console.log(' ëkthor thörsen's örst'ûber o'brian von-fist's'.capitalize(true)
Ëkthor Thörsen's Örst'Ûber O'Brian Von-Fist's