标签:
经常我们需要把一个字符串以空格分隔开,但是如果原字符串中间有多个字符串就是出现问题,只包含一个空格的字符串会出现,为了避免出现此情况,我们可用下面的方法
String tmp = "hello world haha";
tmp = System.Text.RegularExpressions.Regex.Replace(tmp, @"\s+", ","); //替换字符必须在原字符串中没有出现
string[] arr = tmp.Split(‘,‘);
标签:
原文地址:http://www.cnblogs.com/ChenAlong/p/4671814.html