c#使用Split分割换行符 \r\n2023-08-07 14:18:22c# 使用Split分割 换行符,方法如下(其余方法有空再添加): string str = "aa" + "\r\n" + "bb"; string[] ss = str.Split(new string[] { "\r\n" }, StringSplitOptions.None);上一篇:SQL Server函数---Union与Union All的区别下一篇:【转载】SQL SERVER 函数大全