BT编程语言文档
match
使用正则表达式模式在字符串中查找匹配项,并返回包含结果的数组语法 Str.match(regex:Regex)
regex:必填,表示要匹配查找内容的正则表达式
str = 'hello, world!' println str.match(/o/g) // 输出:[{"0": "o"},{"1": "o"}] // 使用命名捕获组 str = '今天10号,明天11号' println str.match(/(?<num>\d+)/g) // 输出:[{"num": "10"},{"num": "11"}]