摘要: c# 使用Split分割 换行符,方法如下(其余方法有空再添加): string str = "aa" + "\r\n" + "bb"; string[] ss = str.Split(new string[] { "\r\n" }, StringSplitOptions.None); 阅读全文
posted @ 2016-12-21 09:02 野狼谷 阅读(13636) 评论(0) 推荐(0)