BT编程语言文档
split
通过将字符串分割为子字符串数组语法 Str.split(string:Str)
string:必填,表示用于分割的字符串
str = 'hello, world!' println str.split(', ') // 输出:['hello', 'world!']语法 Str.split(string:Str)
string:必填,表示用于分割的字符串
str = 'hello, world!' println str.split(', ') // 输出:['hello', 'world!']