simple string check
What i need to do is check that one (string)text feild is the same as another feild.
eg if text1 == text2,
if("text1".equals(text2))
i know this but i would like the opposite
if text1 does not == text2 then....
how would i write this
if(text1 != text2 ){}?
cheers in advance.

