c# 以换行(\r\n)拆分字符串


c# 以换行(\r\n)拆分字符串

字符串数组形式:

string[] striparr = strip.Split(new string[] { "\r\n" }, StringSplitOptions.None);

striparr = striparr.Where(s => !string.IsNullOrEmpty(s)).ToArray();

List<sting>形式:

List<string> striparr = strip.Split(new string[] { "\r\n" }, StringSplitOptions.None).ToList();
striparr = striparr.Where(s => !string.IsNullOrEmpty(s)).ToList();

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM