[Mono-bugs] [Bug 45966][Nor] Changed - Quantifier {n} not correctly supported in regular expressions
bugzilla-daemon@bugzilla.ximian.com
bugzilla-daemon@bugzilla.ximian.com
Thu, 11 Dec 2003 10:30:46 -0500 (EST)
Please do not reply to this email- if you want to comment on the bug, go to the
URL shown below and enter your comments there.
Changed by gsanjay@novell.com.
http://bugzilla.ximian.com/show_bug.cgi?id=45966
--- shadow/45966 2003-07-08 08:03:38.000000000 -0400
+++ shadow/45966.tmp.16024 2003-12-11 10:30:46.000000000 -0500
@@ -2,13 +2,13 @@
Product: Mono/Class Libraries
Version: unspecified
OS: Debian Woody
OS Details:
Status: NEW
Resolution:
-Severity:
+Severity: Unknown
Priority: Normal
Component: System
AssignedTo: mono-bugs@ximian.com
ReportedBy: JoergR@voelcker.com
QAContact: mono-bugs@ximian.com
TargetMilestone: ---
@@ -41,6 +41,15 @@
Additional Information:
------- Additional Comments From JoergR@voelcker.com 2003-07-08 08:03 -------
Created an attachment (id=4803)
Bug sample program.
+
+------- Additional Comments From gsanjay@novell.com 2003-12-11 10:30 -------
+Difference of behaviour between MS.net and mono for different patterns
+and the specified string in the attachment
+
+Pattern MS.net mono
+@"[0-9A-F]{,8}" Does not match Throws Exception "Invalid value x"
+@"[0-9A-F]{8,8}" matches Does not match
+@"[0-9A-F]{8,}" matches Does not match