Read Me - Common Public License V1.0 - Copyright Notice(©)

caselessEquals


>>-caselessEquals(other)-----------------------------------------------><

Returns .true ("1") if the target string is strictly equal to the [other] string, using a caseless comparison. Returns .false ("0") if the two strings are not strictly equal.

String class - caselessEquals method

"a"~caselessEquals("A")          ->    1
"aa"~caselessEquals("A")         ->    0
"4"~caselessEquals("3")          ->    0

Read Me - Common Public License V1.0 - Copyright Notice(©)