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

// NEC service returns 1 (not equal)
IsNotEqual = SRP_String("NEC", Str1, Str2)

// Case insensitive comparison returns 0 (equal)
IsNotEqual = SRP_String("NEC", "HELLO", "hello")

...