0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

複数の文字を連続で出力させたい

Last updated at Posted at 2024-08-31

1 複数の文字を出力させたい

備忘録として書きました。
powershellで複数の文字を出力させたい場面があった時の出力方法になります。

2 配列と繰り返し表現を使用する

出力させたい文字列を配列にし、foreachを使用して繰り返しするようにしました。
以下のようになります。

todohuken.ps1

$kens = "神奈川県","静岡県","山梨県"

foreach ($ken in $kens) {
Write-Host $ken
}

出力結果は以下のようになります。

神奈川県
静岡県
山梨県

配列「kens」に格納していた3つの文字が出力されています。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?