I want to use string.startsWith() method but ignoring the case.
string.startsWith()
Suppose I have String \"Session\" and I use startsWith on \"sE
String
startsWith
You can always do
"Session".toLowerCase().startsWith("sEsSi".toLowerCase());