Kotlinで文字列を比較する方法について記載します。
文字列を比較する方法
Kotlin では == 演算子を使用して比較します。
次の例のように、大文字・小文字は区別されます。
実行例
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
val fruits = "apple" // 実行結果は apple true if( fruits == "apple" ){ println("apple true") }else{ println("apple false") } // 実行結果は APPLE false if( fruits == "APPLE" ){ println("APPLE true") }else{ println("APPLE false") } |