Is there an In string type function in CF. In VB there is the InStr(String A, String B) function which searchs String A for the presence of String B. If it is found, it returns the position where String B starts in String A. If it isn't found, it returns 0.
I'm looking for something similar in CF.
Example: If I'm looking for Houston:
Anything like that (or something similar that I can check for)?
Thanks!
I'm looking for something similar in CF.
Example: If I'm looking for Houston:
Code:
My values: Returns
Dallas False
Houston True
Dallas, Houston True
Thanks!