欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

PowerShell中的转义字符是什么?

程序员文章站 2022-06-17 22:42:56
powershell中转义字符是`,向后撇号(backward apostrophe,是tab键上面的按键,不是单引号),例如: 复制代码 代码如下: write-ho...

powershell中转义字符是`,向后撇号(backward apostrophe,是tab键上面的按键,不是单引号),例如:


write-host `$env:processor_architecture=$env:processor_architecture

会输出$env:processor_architecture=amd64

当然还有一个转义字符是在正则表达式(regular expression)中使用的\,斜线。