I am looping through a collection of strings and using Humanizr.net.
This is so that I can correct each string to sentence case.
For example.
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());
}
The output I am getting is this
//what i am getting
//----------------------
//My string one
//My string two a BC
//My string three
I am wondering is it possible to add exclusions or words to ignore so that I get this
//what i want
//----------------------
//My string two aBC
Thank You