Versions Compared

Key

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

...

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

// BASIC+ returns 0 (equal)
IsNotEqual = (Str1 <> Str2)

// Using the NE service, these strings are not equal
IsNotEqual = SRP_String("NE", Str1, Str2)

// Case insensitive comparison returns 1 (not equal)
IsNotEqual = SRP_String("NE", "HELLO", "hello")

...