I have asp.net application where string is created in following way.

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).

I know the reason is because *, +, ?, {num, num} are "greedy quantifiers"

but is there any way to create RegEx using same string or is it possible to replace these greedy quantifiers with other characters?

I dont want to change my string.

link|improve this question

42% accept rate
1  
This has nothing to do with greediness, it's just that you have a quantifier (*) that isn't quantifying anything. If you want to match a literal * you need to escape it, as @Aziz demonstrated. – Alan Moore Nov 24 '11 at 7:25
feedback

2 Answers

up vote 1 down vote accepted

Try this string:

abc = @"vindo|vindo|vind?40|vind?40|vincent van uden|vilm|vilm|slim?new|compas|\*|darkc?loud";
link|improve this answer
it throws same error.. – ravidev Nov 24 '11 at 7:07
1  
Just to confirm, I have added @ and "\". I dont get an exception after I added these two in your code. – Aziz Shaikh Nov 24 '11 at 7:20
feedback

Just remove |* from your regular expression or replace it with |.* but it has no sense. Tip: use Regulator for RegEx debug.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.