[Mono-bugs] [Bug 45966][Nor] Changed - Quantifier {n} not correctly supported in regular expressions

bugzilla-daemon@bugzilla.ximian.com bugzilla-daemon@bugzilla.ximian.com
Mon, 2 Feb 2004 10:05:35 -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 beauche@softhome.net.

http://bugzilla.ximian.com/show_bug.cgi?id=45966

--- shadow/45966	2003-07-08 08:03:38.000000000 -0400
+++ shadow/45966.tmp.19853	2004-02-02 10:05:35.000000000 -0500
@@ -2,21 +2,20 @@
 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: ---
 URL: 
-Cc: 
 Summary: Quantifier {n} not correctly supported in regular expressions
 
 Description of Problem:
 If you specify a fix number as quantifier in a regular expression pattern
 it's not interpreted correctly.
 
@@ -41,6 +40,21 @@
 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
+
+------- Additional Comments From beauche@softhome.net  2004-02-02 10:05 -------
+This bug seem to have been fixed by the patch for the bug 45976.
+
+This could be the same bug since the sample program use
+Regex.IgnoreCase...