[Mono-bugs] [Bug 54242][Wis] Changed - Regex: 'Split' function problem.
bugzilla-daemon@bugzilla.ximian.com
bugzilla-daemon@bugzilla.ximian.com
Wed, 18 Feb 2004 13:28:13 -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=54242
--- shadow/54242 2004-02-14 13:14:02.000000000 -0500
+++ shadow/54242.tmp.25768 2004-02-18 13:28:13.000000000 -0500
@@ -11,12 +11,13 @@
AssignedTo: mono-bugs@ximian.com
ReportedBy: ndhameja@panaceasoftware.com
QAContact: mono-bugs@ximian.com
TargetMilestone: ---
URL:
Summary: Regex: 'Split' function problem.
+BugsThisDependsOn: 54537
Please fill in this template when reporting a bug, unless you know what
you are doing.
Description of Problem:
Steps to reproduce the problem:
@@ -37,6 +38,10 @@
Additional Information:
The workaround is to use the code below:
char[] c = {'/'};
string[] pS = parseString.Split(c,parseString.Length-1);
return pS;
+
+------- Additional Comments From beauche@softhome.net 2004-02-18 13:28 -------
+I Mark this bug to depend on 54537 since it use
+RegexOptions.RightToLeft. Without this option, this seem to work.