DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Trim With Array
Trim with array.
// A.
string[] arrString = new string[]
{
"Are you there?",
"Yes, I am here......"
};
foreach (string eachString in arrString)
{
string st = eachString.TrimEnd('.', '?');
Console.WriteLine(st);
}





