StackOverflow 文件 PowerShell 教程 字串 多行字串 多行字串 Created: November-22, 2018 在 PowerShell 中有多種方法可以建立多行字串: 你可以手動使用特殊字元回車和/或換行,或使用 NewLine-environment 變數插入系統換行值) "Hello`r`nWorld" "Hello{0}World" -f [environment]::NewLine 在定義字串時建立換行符(在關閉引號之前) "Hello World" 使用 here-string。這是最常用的技術。 @" Hello World "@ 這裡字串格式字串