问题描述
比如我有一句话:Howareyoudoingtoday?我要将它拆分为数组:H,o,w,a,r,e,y,o,u,d,o,i,n,g,t,o,d,a,y,?并且能够自动去除空格?
解决方案
解决方案二:
Regex.Replace(txt,@"s+","").ToArray()其实字符串直接循环也是数组
解决方案三:
楼上的是正解,不过使用Regex之前记得引用命名空间:usingSystem.Text.RegularExpressions;//demopublicstaticvoidMain(){stringstr="Howareyoudoingtoday?";char[]strArray=Regex.Replace(str,@"s+","").ToArray();}
时间: 2024-10-23 13:16:24