c#使用Split分割换行符 \r\n
2021-03-09 13:26
阅读:621
标签:方法 new itop ons spl 换行 clear body gpo c#使用Split分割换行符 \r\n 标签:方法 new itop ons spl 换行 clear body gpo 原文地址:https://www.cnblogs.com/jj123/p/12746273.html
c# 使用Split分割 换行符,方法如下(其余方法有空再添加):
string str = "aa" + "\r\n" + "bb";
string[] ss = str.Split(new string[] { "\r\n" }, StringSplitOptions.None);
评论
亲,登录后才可以留言!