Unable to RegEx Replace

I have the following:

Text:

field id="25" ordinal="15" value="& $01234567890-$2000-"

Regular Expression:

(?<=value=").*(?=")

Replacement String:

& $09876543210-$2000-


When I run Regex Replace in Expresso - it crashes the application.

If I run Regex.Replace in C#, I receive the following Exception:

ArgumentException

parsing "& $01234567890-$2000-" - Capture group numbers must be less than or equal to Int32.MaxValue.

5
задан dhirschl 13 April 2011 в 13:52
поделиться