我想在我的字符串省略号。 是否有可能不使用双引号呢?
'This is a quote. Can`'t I just include a single quote in it?'
'This is another quote that doesn\'t work'
我想在我的字符串省略号。 是否有可能不使用双引号呢?
'This is a quote. Can`'t I just include a single quote in it?'
'This is another quote that doesn\'t work'
'Escape a single quote '' using a double single quote'
请参阅帮助引号规则 。
您可以检查出在通过键入PowerShell命令行的帮助:
Get-Help about_Quoting_Rules
它解释说,反引号在单引号字符串字面解释。
因为单引号字符串的内容字面解释,你不能使用反引号字符强制文字字符解释在一个单引号的字符串。