2013-10-10 88 views
-7

基本上,我在尋找的是字符串的.equals()命令的反參數。有沒有一個類似.notEquals()的命令?我基本上需要比較一個字符串與用戶輸入,如果用戶輸入不正確,我想打印一些東西。尋找.equals()

+0

嗯..'.equals()== false'呢? (沒有指定一種語言,所以我假定基於C語言)。 – MasterMastic

+2

看起來你還沒有通知。時間來改變:http://stackoverflow.com/about –

+0

這是什麼語言......也許C#? – Andrew

回答

1

是的,但用什麼語言?

在Java & C#中,你可以使用:

!StringInput.Equals("ValueToCompare");

0

您可以簡單地使用了 「!」運營商。 像這樣:

if(!string_var.equals(other_string)){ 
    //here you put the code if the string is not equal to 
}else{ 
    //here you put the code if the string IS EQUAL to 
} 
0

您可以使用應用到.equal結果的的!否定布爾運算符。

這就像是說不等於