Posts: 1,769
Threads: 410
Joined: Feb 2003
does findreplace have an upper limit of the source string size?
I can get it to work on a len<12 but when the ss is >35000 it doesn't seem to work.
Thanks.
Posts: 12,135
Threads: 142
Joined: Dec 2002
Please show the macro. I tested with this:
str s.getfile("$qm$\winapiqm.txt")
out s.len
s.findreplace("[]" "[][]")
out s.len
ShowText "" s
and it works well.
Posts: 1,769
Threads: 410
Joined: Feb 2003
here is what i have. there are some var that i use in the first part to ftp the file.
the length of the var b at the end is 38572.
thanks
str ss ti x y z q a b c t
lpstr s
ClearOutput
y=","
q="'"
b="{'"
c="}"
x.getfile("this file name.txt")
rep
,if(z.getl(x)<0)
,,b+c
,,break
,b+z
,b+q
,b+y
,b+q
b.findreplace("','','" "")
a.right(b 9)
Posts: 12,135
Threads: 142
Joined: Dec 2002
You want to replace ',",' or ','','? In case 2, use
b.findreplace("',[39]','" "','" 8)
Posts: 1,769
Threads: 410
Joined: Feb 2003
AAAAAhhhhh it's "[]"!
yeah, i tried feeding in the ascii code but couldnt figure out how to do it. i used everything but "[]" 80)
thanks so much....
Ken