gpt4 book ai didi

powershell - 在PowerShell中转义单引号

转载 作者:行者123 更新时间:2023-12-03 16:49:51 27 4
gpt4 key购买 nike

我的代码中有一个替换语句,其中 Band 被 Cig 替换。但是,当我放单引号时,它占用了第一句话...例如“乐队”

我尝试使用双引号但它不起作用。你知道如何转义单引号吗?

-replace 'Band's', 'Cig's'

最佳答案

Escape characters, Delimiters and Quotes Get-Help about_Quoting_Rules 来自内置帮助(如 Nacimota 所指出的)。

包括 '在单引号字符串中,只需将其加倍为 '' . (单引号文字不支持任何其他转义字符。)

> "Band's Toothpaste" -replace 'Band''s', 'Cig''s'

或者,只需切换到双引号。 (当希望使用插值或转义字符时需要双引号文字。)
> "Band's Toothpaste" -replace "Band's", "Cig's"

(别忘了 -replace 使用了正则表达式)

关于powershell - 在PowerShell中转义单引号,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22525381/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com