$vars abcd$ PS> $vars -replace "`$" abcd$ 如何替换字符串中的“$”? 最佳答案-6ren">
gpt4 book ai didi

powershell - 无法替换字符串中的 "$"

转载 作者:行者123 更新时间:2023-12-01 19:48:30 24 4
gpt4 key购买 nike

我想在 PowerShell 中替换字符串中的“$”。我正在尝试这个:

PS> $vars
abcd$
PS> $vars -replace "`$"
abcd$

如何替换字符串中的“$”?

最佳答案

-replace 运算符使用正则表达式进行字符串匹配,因此您必须使用反斜杠转义美元:

$vars -replace "\$"

干杯!

关于powershell - 无法替换字符串中的 "$",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58445723/

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