字符串函数 - notContains

本节介绍 Zoho Creator 中的 notContains 函数的语法和使用。

描述

notContains 函数检查第一个参数字符串是否不包含第二个参数字符串。此函数执行区分大小写的搜索。 

语法

notContains(str1 , str2)

notContains 函数语法有以下参数。

str1 - 必需。您想要从中查找搜索字符串的主字符串。

str2 - 必需。要在主字符串内搜索的字符串。

返回值

如果 str2 参数未在主字符串内出现,则返回 true,否则返回 false。 

示例

    

Name = "ZohoCreator";
If (notContains(Name,"Zoho")) //返回 false
{

}

If (notContains(Name,"zoho")) //返回 true
{

}