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