1
私は文章を大文字にする関数を持っています。しかし、このようなJavaScriptで名前を大文字にする
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) === "'")
を使用してみましたが、それは役に立ちません。
あなたのコードの '' 'をテストする部分は現在、' 'smallWords'にマッチするものだけに適用されていませんか? – nnnnnn
ああ私は今それを見る!ありがとう@nnnnnn –
@nnnnnnこれに最適なソリューションはありますか? –