RosettaCodeData/Task/Binary-strings/VBA/binary-strings-1.vba
2018-06-22 20:57:24 +00:00

4 lines
204 B
Text

'Set the string comparison method to Binary.
Option Compare Binary ' That is, "AAA" is less than "aaa".
' Set the string comparison method to Text.
Option Compare Text ' That is, "AAA" is equal to "aaa".