gpt4 book ai didi

javascript - 在javascript中大写名称

转载 作者:行者123 更新时间:2023-11-30 11:48:43 26 4
gpt4 key购买 nike

我有一个将句子大写的函数。但它不能将名称大写,例如,

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);
});
}

谁能帮我解决这个问题?我试过使用 (title.charAt(index + match.length) !== "'"|| title.charAt(index - 1) === "'") 但它没有帮助。

最佳答案

我不确定您需要处理的所有用例,但对于您提出的问题,您可以使用查找单词边界的正则表达式:

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`));

关于javascript - 在javascript中大写名称,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40099093/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com