String behaviour in exclusive split

2
I was wondering whether the check one can do within an exclusive split is sensitive for lower / uppercase differences. So for example, would this statement '12wlvt = 12WLVT' return true or false?
asked
1 answers
3

Comparison on Strings is case sensitive. So, the statement will return false. You can use the toLowerCase('...') expression to compare strings in a case insensitive way.

For example:

toLowerCase('12wlvt') = toLowerCase('12WLVT')
answered