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

C# 字符串切割——Split

时间:2020-01-17 13:20:32      阅读:73      评论:0      收藏:0      [点我收藏+]

标签:aaa   ase   ref   array   options   htm   sar   href   har   


string str="1,2,3,4,5"; string[] sArray=Regex.Split(str,",",RegexOptions.IgnoreCase);


多字符串
string str="aaajbbbscccjdddseee";
string[] sArray=str.Split(new char[2]{‘j‘,‘s‘}); //分割结果为aaa bbb ccc ddd eee
单字符串
string str="aaajbbbjccc";
string[] sArray=str.Split(‘j‘); //分割结果为 aaa bbb ccc


转载:https://www.cnblogs.com/luyj00436/p/11658687.html

C# 字符串切割——Split

标签:aaa   ase   ref   array   options   htm   sar   href   har   

原文地址:https://www.cnblogs.com/yeyuqian/p/12205037.html

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