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 方法一起使用。 多行字符串创建基本字符串