GoFrame入门教程 GoFrame gstr-字符串创建

2024-02-25 开发教程 GoFrame入门教程 匿名 4

Repeat

  • 说明:​Repeat​返回一个由​input​重复​multiplier​次后组成的新字符串。
  • 格式:
Repeat(input string, multiplier int) string
  • 示例:
func ExampleRepeat() {
var (
input = `goframe `
multiplier = 3
result = gstr.Repeat(input, multiplier)
)
fmt.Println(result)
// Output:
// goframe goframe goframe
}