BT编程语言文档
repeat
返回一个新字符串,该字符串包含被连接在一起的指定数量的字符串副本语法 Str.repeat(count:Int)
count:必填,表示重复的次数
str = 'hello' println str.repeat(3) // 输出:'hellohellohello'语法 Str.repeat(count:Int)
count:必填,表示重复的次数
str = 'hello' println str.repeat(3) // 输出:'hellohellohello'