RosettaCodeData/Task/Binary-strings/VBA/binary-strings-1.vba

5 lines
204 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
'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".