如何在C#中使用正则表达式过滤掉?

时间:2011-05-24 14:04:59

标签: asp.net regex asp.net-mvc-2

如何使用C#中的正则表达式过滤空间?

3 个答案:

答案 0 :(得分:1)

您可能会显示一些关于您如何排序/显示该列表的代码。

从字符串中删除初始数字:

string newString = Regex.Replace(oldString, @"^\d\s*", String.Empty);

答案 1 :(得分:0)

用空字符串替换/^\d\s*/

答案 2 :(得分:0)

要从字符串中删除所有空格,请使用

result = Regex.Replace(subject, @"\s+", "");