是的,C#中的Split方法支持Unicode字符。通過指定Unicode字符作為分隔符,可以輕松地對包含Unicode字符的字符串進行拆分操作。例如:
string input = "Hello, 你好, Bonjour";
char[] separators = new char[] { ',', ' ', ',' };
string[] result = input.Split(separators, StringSplitOptions.RemoveEmptyEntries);
foreach (string s in result)
{
Console.WriteLine(s);
}
在上面的例子中,我們使用了包含英文逗號、空格和中文逗號的字符數(shù)組作為分隔符,成功對包含Unicode字符的字符串進行了拆分操作。