string_is_***


string_is_eq(s1, @rest...)
string_is_lt(s1, @rest...)
string_is_gt(s1, @rest...)
string_is_lteq(s1, @rest...)
string_is_gteq(s1, @rest...)
string_is_ci_eq(s1, @rest...)
string_is_ci_lt(s1, @rest...)
string_is_ci_gt(s1, @rest...)
string_is_ci_lteq(s1, @rest...)
string_is_ci_gteq(s1, @rest...)
      

String comparison functions. Return true if the relation holds, false otherwise.

The string_is_ci_*** predicates ignore the case of the strings being compared.

Examples:


string_is_eq("hello", "HELLO")
// false

string_is_ci_eq("hello", "HELLO")
// true

string_is_lteq("abbcd", "abbcd")
// true
      

Also see:

string_starts_with
string_index_of


Core Module Index | Contents