BT编程语言文档
replace
在字符串中查找匹配的子字符串,并替换为新的子字符串语法 Str.replace(string:Str|regex:Regex, new_string:Str)
string|regex:必填,字符串或正则表达式,表示要替换的内容
new_string:必填,字符串类型,表示替换后的内容
str = 'hello, world!' println str.replace('world', 'bt') // 输出:'hello, bt!' println str.replace(/l/, 'L') // 使用正则,输出:'heLlo, world!' println str.replace(/l/g, 'L') // 使用正则,输出:'heLLO, worLd!'