Is the UCase$ function in VB6 invariant or culture sensitive?
I read that a case-insensitive string comparison is equal to make a binary string comparison where left and right string are upper cased in an invariant way.
Lower case (then LCase$) is not recommended for simulating a case-insensitive search due to:
There is a small group of characters that when converted to lowercase cannot make a round trip.
Thanks
I read that a case-insensitive string comparison is equal to make a binary string comparison where left and right string are upper cased in an invariant way.
Lower case (then LCase$) is not recommended for simulating a case-insensitive search due to:
Quote:
There is a small group of characters that when converted to lowercase cannot make a round trip.