我正在遍历一组字符串并使用 Humanizr.net。
这样我就可以将每个字符串更正为句子大小写。
例如。
List<string> mystrings = new List<string>();
mystrings.Add("my string one");
mystrings.Add("my string two aBC");
mystrings.Add("My String Three");
foreach (string x in mystrings)
{
Console.WriteLine(x.Humanize());
}
我得到的输出是这个
//what i am getting
//----------------------
//My string one
//My string two a BC
//My string three
我想知道是否可以添加排除项或要忽略的单词以便我得到这个
//what i want
//----------------------
//My string two aBC
谢谢你