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 _LTC Str2)

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

// Case insensitive comparison returns 0 (str1 is equal to str2, not less than)
IsLessThan = SRP_String("LTC", "hello", "HELLO")

...