具有小写连词的标题案例的字符串

时间:2018-04-12 07:26:50

标签: c# regex

我想将字符串the lord of the rings和标题大小写带到The Lord of the Rings

然而,内置的.ToTitleCase()函数将每个单词都大写。 The Lord Of The Rings

我想在这里使用英语规则和小写ofthe以及其他连词。

https://english.stackexchange.com/a/34

C#

string title = "the lord of the rings";

TextInfo textinfo = new CultureInfo("en-US", false).TextInfo;
title = textinfo.ToTitleCase(title);

http://rextester.com/KDOOG71862

0 个答案:

没有答案