Okay, say that I am using an if-else statement and i want to basically say that
if (string.contains("#")
then do this...
else if (string.contains ("#") = false)
then do this...
else
then do this...
so, my question is about the second else if statement. I know that I can't say what I typed up there but I need to figure out a way to write if string doesn't contain a certain substring then do something else... Any suggestions?