码迷,mamicode.com
首页 > Windows程序 > 详细

C#split()方法使用

时间:2017-01-01 14:36:17      阅读:194      评论:0      收藏:0      [点我收藏+]

标签: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()方法使用

标签:c#、split、截取字符串

原文地址:http://970076933.blog.51cto.com/9767314/1887864

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!