StackOverflow 文件 PowerShell 教程 字串 格式字串 格式字串 Created: November-22, 2018 $hash = @{ city = 'Berlin' } $result = 'You should really visit {0}' -f $hash.city Write-Host $result #prints "You should really visit Berlin" 格式字串可以與 -f 運算子或靜態 [String]::Format(string format, args) .NET 方法一起使用。 多行字串建立基本字串