Any Index Contains chip

Input string list and input desired string to match and it will find all indices that contain that phrase in the list

“String Get All Indices Of” (String equivalent of “List Get All Indices Of”)

Strings are just Lists. Idk y rec tries to separate them from each other.

They’re looking for a version that does this for a list of strings specifically. Which can just be worked around for now with For, Get Element, String Contains, If, Int [List] Variable, List Add

ah, didnt see the target list… well wouldnt:
contains = list contains/list get all indices of count != 0
indices = list get all indices of

:skull:

List contains gets whether a whole item exists in a list, and string contains gets if a specific line of text exists anywhere in a string, so using a list contains “abc” on a string list containing “abcde”, “ABCDE”, “12345” wouldn’t pick it up as—though one of the items does contain the desired string—no item in the list is perfectly equal to “abc”.

This seems like a fairly niche usecase though, and can totally just be worked around with a For Each.