string_compare (string text1, string text2, boolean insensitively) ⇒ boolean
Compares two strings alphabetically. Returns -1 if the first word comes before the second, returns 0 if both words are exactly equal, returns 1 if the second word comes before the first.
First available: Version 1.11.12
Notes
This function allows you to develop fast and efficient sorting algorithms on strings.
Comments