问题解决方法:
在这个程序中,我们将使用 strings.Repeat() 函数按指定的次数重复指定的字符串,并在控制台屏幕上打印结果。
程序/源代码:
下面给出了用于演示 strings.Repeat() 函数的源代码。给定的程序已成功编译并执行。
// Golang program to demonstrate the
// strings.Repeat() function
package main
import "fmt"
import "strings"
func main() {
var str string = "India "
var result string
result = strings.Repeat(str, 4)
fmt.Println("String After repetition:", result)
}
输出:
String After repetition: India India India India
说明:
在上面的程序中,我们声明了包 main。 main 包用于告诉 Go 语言编译器必须编译该包并生成可执行文件。在这里,我们导入了包含 fmt 包文件的 fmt 包,然后我们可以使用与 fmt 包相关的函数。
在 main() 函数中,我们创建了两个变量 str 和 result。然后我们使用strings.Repeat()函数将指定的字符串重复4次并分配给结果变量。之后,我们在控制台屏幕上打印结果。
相关用法
- Golang strings.Replace()用法及代码示例
- Golang strings.ToLowerSpecial()用法及代码示例
- Golang strings.EqualFold()用法及代码示例
- Golang strings.NewReplacer()用法及代码示例
- Golang strings.LastIndex()用法及代码示例
- Golang strings.IndexRune()用法及代码示例
- Golang strings.ToValidUTF8()用法及代码示例
- Golang strings.ContainsRune()用法及代码示例
- Golang strings.IndexByte()用法及代码示例
- Golang strings.IndexAny()用法及代码示例
- Golang strings.LastIndexFunc()用法及代码示例
- Golang strings.SplitN()用法及代码示例
- Golang strings.LastIndexByte()用法及代码示例
- Golang strings.ToTitleSpecial()用法及代码示例
- Golang strings.IndexFunc()用法及代码示例
- Golang strings.Index()用法及代码示例
- Golang strings.Join()用法及代码示例
- Golang strings.Map()用法及代码示例
- Golang strings.Compare()用法及代码示例
- Golang strings.Fields()用法及代码示例
注:本文由纯净天空筛选整理自 Golang program to demonstrate the strings.Repeat() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。