StackOverflow 文档 PowerShell 教程 字符串 多行字符串 多行字符串 Created: November-22, 2018 在 PowerShell 中有多种方法可以创建多行字符串: 你可以手动使用特殊字符回车和/或换行,或使用 NewLine-environment 变量插入系统换行值) "Hello`r`nWorld" "Hello{0}World" -f [environment]::NewLine 在定义字符串时创建换行符(在关闭引号之前) "Hello World" 使用 here-string。这是最常用的技术。 @" Hello World "@ 这里字符串格式字符串