I have a string that looks like this:
string1 = "A1, A2, B4, C8, M5, X2, Z1"
I would like a simple boolean to let me know if:
string2 = "B4"
is found in string 1.
I am sure this is possible but I don't know how to do it.
Any help would be appreciated.
string1 = "A1, A2, B4, C8, M5, X2, Z1"
I would like a simple boolean to let me know if:
string2 = "B4"
is found in string 1.
I am sure this is possible but I don't know how to do it.
Any help would be appreciated.