09-22-2012, 03:59 AM
IStringMap would be fastest to find in a big list. But if need to replacerx, I probably would use array.
str s.getfile(...)
ARRAY(str) a=s
int i
for i 0 a.len
,a[i].replacerx(...)
s=a
s.setfile(...)
If it is too slow, can be optimized to make maybe 2 times faster.
str s.getfile(...)
ARRAY(str) a=s
int i
for i 0 a.len
,a[i].replacerx(...)
s=a
s.setfile(...)
If it is too slow, can be optimized to make maybe 2 times faster.