在C#中,String.Split()方法用于将字符串分割成一个字符串数组,基于指定的分隔符。它可以接受一个字符数组作为参数,或者可以用字符、字符串或字符串数组作为分隔符。
例如,以下是如何使用String.Split()方法将字符串分割成一个字符串数组:
string str = "Hello,world";
char[] delimiter = {','};
string[] words = str.Split(delimiter);
foreach (string word in words)
{
Console.WriteLine(word);
}
在这个例子中,String.Split()方法将字符串"Hello,world"根据逗号分隔符分割成两个字符串"Hello"和"world",然后将它们存储在字符串数组words中。最后,通过循环遍历words数组,并将每个单词打印出来。
辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
推荐阅读: c#中base64加密怎么实现