91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

c#中split的功能有哪些

c#
小億
89
2024-03-06 09:29:06
欄目: 編程語言

在C#中,split方法是用于將字符串按照指定的分隔符拆分成多個子字符串的功能。一般用法如下:

  1. 將字符串按照指定的分隔符拆分成字符串數組。
  2. 可以指定多個分隔符,或者使用字符串數組作為分隔符。
  3. 可以指定最大拆分次數,以限制拆分的次數。
  4. 可以指定拆分時忽略空白字符。
  5. 可以使用 StringSplitOptions 枚舉來控制拆分時是否保留空字符串。

示例代碼如下:

string sentence = "Hello,world";
string[] words = sentence.Split(',');
// words = {"Hello", "world"}

string sentence2 = "apple,banana;orange";
string[] words2 = sentence2.Split(new char[] { ',', ';' });
// words2 = {"apple", "banana", "orange"}

string sentence3 = "one two three four five";
string[] words3 = sentence3.Split(new char[] { ' ' }, 3);
// words3 = {"one", "two", "three four five"}

string sentence4 = "apple, ,banana, ,orange";
string[] words4 = sentence4.Split(new char[] { ',' }, StringSplitOptions.RemoveEmptyEntries);
// words4 = {"apple", "banana", "orange"}

0
瑞金市| 孙吴县| 平乡县| 石林| 陇西县| 四川省| 郑州市| 普兰店市| 武定县| 许昌县| 黄龙县| 安徽省| 鄯善县| 林西县| 陆良县| 苏尼特左旗| 隆回县| 永川市| 甘洛县| 巧家县| 渝北区| 阳山县| 博兴县| 金乡县| 云安县| 云和县| 瓦房店市| 航空| 浠水县| 郎溪县| 加查县| 宜宾市| 连江县| 左贡县| 虎林市| 女性| 莱州市| 新源县| 高邮市| 苗栗市| 华容县|