未分類

PowerShell - 文字列を連結する

文字列を連結する方法について、サンプルコードを用いて説明します。

文字列を連結

$s1 = "AB"
$s2 = "CD"
$s3 = $s1 + $s2
Write-Host $s3

文字列を連結

$s1 = "AB"
$s1 += "CD"
Write-Host $s1

文字列を指定回数連結

$s1 = "AB"
$s2 = $s1 * 3
Write-Host $s2

文字列を指定回数連結

$s1 = "AB"
$s1 *= 3
Write-Host $s1

文字列を連結

Write-Host ([String]::join("-", ("Apple", "Orange")))

-未分類