How would I run a one line check to see if a string is within my List object? I'm trying to use that SearchString function but I don't get what that flag bit is all about.
Basically I just need it to give an answer of 0 if the string isn't in the whole list, or 1 if it is in the list.
or you could create about the most basic function in any language; searching a list for a string, manually;
Run a loop for the duration of the list object + 1, and retrieve the loop position value from the list, and compare it to the string you wanted. If it appears, break the loop and return a yes, and if it reaches the loop position of the size of the list object, return 0.