[Mono-bugs] [Bug 24582] New - Regex Split error

bugzilla-daemon@rocky.ximian.com bugzilla-daemon@rocky.ximian.com
12 May 2002 08:11:08 -0000


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 sma@3plus4.de.

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

--- shadow/24582	Sun May 12 04:11:08 2002
+++ shadow/24582.tmp.29394	Sun May 12 04:11:08 2002
@@ -0,0 +1,27 @@
+Bug#: 24582
+Product: Mono/Class Libraries
+Version: unspecified
+OS: 
+OS Details: German XP
+Status: NEW   
+Resolution: 
+Severity: 
+Priority: Blocker
+Component: CORLIB
+AssignedTo: mono-bugs@ximian.com                            
+ReportedBy: sma@3plus4.de               
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL: 
+Cc: 
+Summary: Regex Split error
+
+The following example throws an ArgumentOutOfRangeException on mono (last 
+compiling cvs version):
+
+ using System.Text.RegularExpressions;
+ class x {
+  public static void Main() {
+   new Regex("[&;]").Split("a=1&b=2");
+  }
+ }