The meaning of a specified range depends on the character ordering valid at run time (as determined by Option Compare and the locale setting of the system the code is running on). Using the Option Compare Binary example, the range [A–E] matches A, B and E. With Option Compare Text, [A–E] matches A, a, А, а, B, b, E, e. The range does not match К or к because accented characters fall after unaccented characters in the sort order.
|