Author Topic: Parsing list strings  (Read 641 times)

I need help getting items out of long list strings - e.g. the etard filter.

The items are separated by commas: "Hammer, Wrench, Printer" etc. How do I get a script to read through a comma-separated list and check if a string I give matches one in it?

Psuedo code because phone

str = strReplace ", " "\t"
For loop with getFieldCount(str)
If given word $= getField (str, I)

Hope that makes sense

Psuedo code because phone

str = strReplace ", " "\t"
For loop with getFieldCount(str)
If given word $= getField (str, I)

Hope that makes sense
Okay, will try that