c#使用Split分割换行符

Posted 野狼谷

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c#使用Split分割换行符 相关的知识,希望对你有一定的参考价值。

c# 使用Split分割 换行符,方法如下(其余方法有空再添加):
 
string str = "aa" + "\r\n" + "bb";
 
string[] ss = str.Split(new string[] { "\r\n" }, StringSplitOptions.None);

以上是关于c#使用Split分割换行符 的主要内容,如果未能解决你的问题,请参考以下文章

python split分割次数

Freemarker - 基于换行符分割字符串

用换行符分割字符串[重复]

python中line.split()的用法及实际使用示例

Python中split()方法的使用

Python入门-2编程基本概念:17字符串-split()分割-join()合并-join()效率测试