c# split whitespace code example
Example 1: remove whitespace between string c#
string str = "C Sharp";
str = Regex.Replace(str, @"\s", "");
Example 2: how to split a string by in c#
char[] separator = new[] { ',' };
var result = aiTranslatedString.Split(separator, StringSplitOptions.RemoveEmptyEntries).ToList();