BT编程语言文档
search
使用正则表达式模式在字符串中查找匹配项,并返回第一个匹配项的索引语法 Str.search(regex:Regex)
regex:必填,表示要匹配查找内容的正则表达式
str = 'hello, world!' println str.search(/o/) // 输出:4 println str.search(/planet/) // 输出:-1语法 Str.search(regex:Regex)
regex:必填,表示要匹配查找内容的正则表达式
str = 'hello, world!' println str.search(/o/) // 输出:4 println str.search(/planet/) // 输出:-1