贪婪量词的ASP.Net正则表达式问题

时间:2011-11-24 06:28:56

标签: asp.net regex quantifiers

我有asp.net应用程序,其中string以下列方式创建。

string abc;
abc="vindo|vindo|vind?40|vind?40|vincent van uden|vilm|vilm|slim?new|compas|*|darkc?loud";

Regex ABCRegex = new Regex(abc);

but It throws error.
   at System.Text.RegularExpressions.RegexParser.ScanRegex()
   at System.Text.RegularExpressions.RegexParser.Parse(String re, RegexOptions op)
   at System.Text.RegularExpressions.Regex..ctor(String pattern, RegexOptions options, Boolean useCache).

我知道原因是因为*,+,?,{num,num}是"贪婪的量词"

但有没有办法用相同的字符串创建RegEx,或者是否可以用其他字符替换这些贪婪的量词?

我不想改变我的字符串。

2 个答案:

答案 0 :(得分:1)

只需从正则表达式中删除|*或将其替换为|.*即可,但没有任何意义。提示:使用Regulator进行RegEx调试。

答案 1 :(得分:1)

试试这个字符串:

abc = @"vindo|vindo|vind?40|vind?40|vincent van uden|vilm|vilm|slim?new|compas|\*|darkc?loud";