Community Tip - Did you get called away in the middle of writing a post? Don't worry you can find your unfinished post later in the Drafts section of your profile page.
X
I am looking for an ACL function that will do what the VB function instr() does, which searches one string to see if it contains another string; e.g., to see if "to" is in "Benton" (it is!).
And don't forget the ever popular index() and rindex() functions in ACL.
index(s1, s2);
This function returns the position in string s1 of the first occurrence of string s2, based at 1. If the substring is not found, 0 is returned. For example, the value of index("rnotes9302", "9302") would be 7.