go言語 文字列を繰り返して表示する

  • 作成日 2021.04.14
  • 更新日 2022.11.03
  • go
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の場合は何も表示されない

}