How can I check for a set of text in a text box
Give us an example?
Let's say I have a web address and I want to extract the link part from it not the https:// part
Use the split block and split at // to get a list,
If the length of list is >= 2 then select the second item
Taifun