Hello, I want to be able to search for multiple strings and if any of the strings are found I want it returned which one it is. I've been able to search for multiple strings using the OR command, but I'm not sure how I am supposed to make it return which of my strings is found. I've given an example below
If StringInStr($html, Batman) OR StringInStr($html, Superman) Then
MsgBox(0, "Success", "The string found was: Superman")
EndIf
So it will search for the two strings and whichever it founds it will return me with. How can I make that work?