equalsIgnoreCase
本节介绍 Zoho Creator 中的 equalsIgnoreCase 函数的语法和使用。
描述
equalsIgnoreCase 函数将给定字符串和另一个字符串进行对比,忽略大小写。如果两个字符串具有相同长度且两个字符串中对应的字符相等(忽略大小写),则它们被视为相等(忽略大小写)。
语法
(或)
equalsIgnoreCase 函数语法有以下参数。
string1 - 必需。主字符串。
string2 - 必需。要与主字符串进行比较的字符串。
返回值
如果参数不为空值且字符串相等(忽略大小写),则返回 true;否则返回 false。
示例
str1 = "Create online database applications with Zoho Creator";
str2 = "Create online database applications with Zoho Creator";
str3 = "create online database applications with zoho creator";
str1.equalsIgnoreCase(str2) //返回 true
str1.equalsIgnoreCase(str3) //返回 true
str1 = "Create online database applications with Zoho Creator";
str2 = "Create online database applications with Zoho Creator";
str3 = "create online database applications with zoho creator";
equalsIgnoreCase(str1,str2) //返回 true
equalsIgnoreCase(str1,str3) //返回 true