``` val str = … when(str) { “STH_1” -> … ...
# announcements
m
Copy code
val str = …

when(str) {
   “STH_1” -> …
   “STH_2” -> ...
}
Is there any way to make these comparisons case insensitive?