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