RE: fast compare?

2002-11-11 Thread Ben Doom
if you need case-sensitivity, you'll have to build your own comparitor (I'd just write a UDF) to do it. But I may be wrong about that. HTH. --Ben Doom Programmer & General Lackey Moonbow Software : -Original Message- : From: jon hall [mailto:jonhall@;ozline.net] : Sen

RE: fast compare?

2002-11-11 Thread Bryan F. Hogan
Message- From: jon hall [mailto:jonhall@;ozline.net] Sent: Monday, November 11, 2002 3:15 PM To: CF-Talk Subject: fast compare? Using MX is there a relatively simple way to do a fast compare of two large string arrays? I need to know if an element in an array is contained in the another

RE: fast compare?

2002-11-11 Thread Matt Liotta
F-Talk > Subject: fast compare? > > Using MX is there a relatively simple way to do a fast compare of > two large string arrays? I need to know if an element in an array > is contained in the another. > Currently I'd use something like this > > for(o = 1, o LT

fast compare?

2002-11-11 Thread jon hall
Using MX is there a relatively simple way to do a fast compare of two large string arrays? I need to know if an element in an array is contained in the another. Currently I'd use something like this for(o = 1, o LT arrayLen(ary1), o = o + 1) { for(i = 1, LT arrayLen(ary2),