go言語 文字列を繰り返して表示する
go言語で、stringsパッケージのRepeatを使用して、文字列を繰り返して表示するサンプルコードを記述してます。go言語のバージョンは1.15.4を使用してます。
環境
- OS windows10 pro 64bit
- go言語 1.15.4
Repeat使い方
Repeatを使用すると、文字列を置換することが可能です。
strings.Repeat(文字列, 繰り返し回数)
以下は、Repeatを使って、文字列「hello」を繰り返し表示するサンプルコードとなります。
package main
import (
"fmt"
"strings"
)
func main() {
str := "hello"
fmt.Println(strings.Repeat(str, 2))
// hellohello
fmt.Println(strings.Repeat(str, 3))
// hellohellohello
fmt.Println(strings.Repeat(str, 0))
// 0の場合は何も表示されない
}
-
前の記事
「npm ERR! Failed at the node-sass@4.9.0 postinstall script.」が発生した場合の対処法 2021.04.14
-
次の記事
AlmaLinux 最新のnode.jsをインストールするまでの手順 2021.04.15
コメントを書く