連線字串

在字串中使用變數

你可以使用雙引號字串中的變數來連線字串。這不適用於屬性。

$string1 = "Power"
$string2 = "Shell"
"Greetings from $string1$string2"

使用+運算子

你還可以使用+運算子連線字串。

$string1 = "Greetings from"
$string2 = "PowerShell"
$string1 + " " + $string2

這也適用於物件的屬性。

"The title of this console is '" + $host.Name + "'"

使用子表示式

子表示式 $() 的輸出/結果可以用在字串中。這在訪問物件的特性或執行復雜表示式時很有用。Subexpressions 可以包含由分號 ; 分隔的多個語句

"Tomorrow is $((Get-Date).AddDays(1).DayOfWeek)"