Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在 PowerShell 字符串中插入 `n?我想显示 `n 但我无法逃脱换行符。
谢谢,
DD
有几种方法。这里有两个:
带单引号:
'This is `n stuff'
或者用双引号:
"This is ``n stuff"