[Mono-bugs] [Bug 56985][Wis] Changed - Error in String.Replace()

bugzilla-daemon@bugzilla.ximian.com bugzilla-daemon@bugzilla.ximian.com
Thu, 15 Apr 2004 14:11:09 -0400 (EDT)


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 mono-bug@jerryweb.info.

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

--- shadow/56985	2004-04-15 13:45:39.000000000 -0400
+++ shadow/56985.tmp.29072	2004-04-15 14:11:09.000000000 -0400
@@ -172,6 +172,24 @@
 
 Czech culture
 s1.Replace(s2, "abc"):  ;
 s2.Replace(s1, "def"):  ;
 s1 == s2: False
 s1.Equals(s2): False
+
+------- Additional Comments From mono-bug@jerryweb.info  2004-04-15 14:11 -------
+PS: 
+mrnous src # LANG=C ./test.exe
+(int) s1[0] = 32
+(int) s2[0] = 160
+Invariant culture
+s1.Replace(s2, "abc"):  ;
+s2.Replace(s1, "def"): ?;
+s1 == s2: False
+s1.Equals(s2): False
+
+Czech culture
+s1.Replace(s2, "abc"): abc;
+s2.Replace(s1, "def"): def;
+s1 == s2: False
+s1.Equals(s2): False
+