I wish to find a string into a text field, but i need to evaluate if the text field contains more than one key, for example:
The text field could have the next string: "S4W10001" or "S4W11001" or "S4C00001" or "S4C01001", etc.
So, I have the next code:
If("W10" in FieldText.Text, "Y", "N") -> True, the first string "S4W10001" contains "W10", but false for example in second example because it contains "W11".
So, i have try:
If("W10" Or "W11" in FieldText.Text, "Y", "N") -> False, because only find the last ocurrence.
Any advice to find some values in a string?
Thanks!