BT编程语言文档
slice
提取字符串的片段,并在新的字符串中返回被提取的部分语法 Str.slice(start:Int, end:Int)
start:必填,表示片段的起始位置
end:选填,表示片段的结束位置
str = 'hello, world!' println str.slice(0, 5) // 输出:'hello' println str.slice(7) // 输出:'world!'语法 Str.slice(start:Int, end:Int)
start:必填,表示片段的起始位置
end:选填,表示片段的结束位置
str = 'hello, world!' println str.slice(0, 5) // 输出:'hello' println str.slice(7) // 输出:'world!'