Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
Str1 = "27"
Str2 = "27."

// BASIC+ returns 0
IsLessThan = (Str1 < Str2)

// The LT service returns 1
IsLessThan = SRP_String("LT", Str1, Str2)

// Case insensitive comparison returns 1 (lowercase is less than uppercase)
IsLessThan = SRP_String("LT", "hello", "HELLO")

...