Answers for "comparing Java to Kotlin"

1

kotlin compare string

val first = "code"
val second = "code"
val firstCapitalized = "Code"
// with ==
assertTrue { first == second }							
assertFalse { first == firstCapitalized }
// with equals
assertTrue { first.equals(second) }						
assertFalse { first.equals(firstCapitalized) }
assertTrue { first.equals(firstCapitalized, true) }		// ignores case
// with compareTo
assertTrue { first.compareTo(second) == 0 }
assertTrue { first.compareTo(firstCapitalized) == 32 }
assertTrue { firstCapitalized.compareTo(first) == -32 }
assertTrue { first.compareTo(firstCapitalized, true) == 0 }
Posted by: Guest on April-21-2021
1

compare 2 strings kotlin

string1 == string2 //returns true if they are equal and false if they are not
Posted by: Guest on January-07-2021

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language