BT编程语言文档
contain
检查字符串是否包含指定的子字符串,返回布尔值语法 Str.contain(string:Str)
string:必填,用于查找的字符串
str = 'hello, world!' println str.contain('world') // 输出:true println str.contain('planet') // 输出:false语法 Str.contain(string:Str)
string:必填,用于查找的字符串
str = 'hello, world!' println str.contain('world') // 输出:true println str.contain('planet') // 输出:false