首页 > 代码库 > C#split()方法使用

C#split()方法使用

    C#split()方法使用

    split函数是一种用来截取字符串的函数,使用方法如下

1.单字符串截取:

  string str=“1,2,3,4”;
  string[] str1=str.split(‘,‘);

  结果为:   1   2   3    4


2.多字符串截取:

  string str=“1,2,3.4”;
  string[] str1=str.split(new char[2]{‘,‘,‘.‘});

  结果为:   1   2   3    4


本文出自 “世界都一样” 博客,请务必保留此出处http://970076933.blog.51cto.com/9767314/1887864

C#split()方法使用