Versions Compared

Key

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

...

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

// In BASIC+, these are equal
If Str1 = Str2 then
    Ans = "Equal Value"
end else
    Ans = "Not Equal Value"
end

// Using the Compare service, these strings are not equal
If SRP_String("Compare", Str1, Str2) = 0 then
    Ans = "Equal Strings"
end else
    Ans = "Not Equal Strings"
end

// Case sensitive comparison returns 0
Ans = SRP_String("Compare", "HELLO", "hello", No$)

// Case insensitive comparison returns 1
Ans = SRP_String("Compare", "HELLO", "hello", Yes$)

See Also