主题:  关于"\\"和Replace的问题

spartutu

职务:普通成员
等级:1
金币:0.0
发贴:82
#12003/9/9 11:55:24
我的程序如下
string1:="1\\2\\3\\4"
String2:="1\\2\\3\\5"
MyString:="1\\2\\3\\4\\5\\6"
memo1:=wcDisplayControl(100,100,100,100,"memo")
memo2:=wcDisplayControl(300,100,100,100,"memo")
wcSetPropertyvalue(memo1,"Text",string1)
wcSetPropertyvalue(memo2,"Text",string1)
等待,按鼠标继续
if string1<>string2 then
ResultString:=Replace(string1,string2,MyString)
wcSetPropertyvalue(Memo1,"Text",ResultString)
wcSetPropertyvalue(memo2,"Text",string2)
end if

memo1的值由 1\2\3\4变为 1\2\3\4\5\6 ,memo2的值变为1\2\3\5
按理说memo1的值应为 1\2\3\5\5\6,但出现了错误,我该怎么改程序



spartutu

职务:普通成员
等级:1
金币:0.0
发贴:82
#22003/9/10 8:19:33
我想作一个动态写入、修改文件地址的东西,所以要用到"\\",大家帮我出出主意



spartutu

职务:普通成员
等级:1
金币:0.0
发贴:82
#32003/9/12 15:38:39
11