Shay Well-Known Member Licensed User Longtime User Sep 23, 2013 #1 I guess this is simple one, but... I do I say if string does not contains something I know string.contains("Something"), but how do I do the NOT?
I guess this is simple one, but... I do I say if string does not contains something I know string.contains("Something"), but how do I do the NOT?
NJDude Expert Licensed User Longtime User Sep 23, 2013 #2 You could do this: B4X: If myVariable.Contains("something") = False Then ... Upvote 0
thedesolatesoul Expert Licensed User Longtime User Sep 23, 2013 #4 B4X: If Not(myVariable.Contains("something")) Then Upvote 0