如何在PowerShell中将`n打印为字符串?

时间:2013-06-19 14:21:45

标签: powershell escaping newline

如何在PowerShell字符串中插入`n?我想显示`n但是我无法逃脱换行符。

谢谢,

DD

1 个答案:

答案 0 :(得分:8)

有几种方法。这是两个:

单引号:

'This is `n stuff'

或双引号:

"This is ``n stuff"