c#使用Split分割换行符 \r\n

 

 
c# 使用Split分割 换行符,方法如下(其余方法有空再添加):
 
string str = "aa" + "\r\n" + "bb";
 
string[] ss = str.Split(new string[] { "\r\n" }, StringSplitOptions.None);
posted @ 2020-04-21 17:47  五百万  阅读(2703)  评论(0编辑  收藏  举报