In python you could do something like:
someString= "2 + 3"
if "+" in someString:
do things
else:
do other things
what is the java equivalent to "in"?
someString= "2 + 3"
if "+" in someString:
do things
else:
do other things
what is the java equivalent to "in"?