gpt4 book ai didi

powershell - 不区分大小写的 PowerShell 替换

转载 作者:行者123 更新时间:2023-12-03 11:47:14 28 4
gpt4 key购买 nike

我有以下 PowerShell 脚本:

$RegExplorer = Get-ItemProperty -Path HKLM:\SYSTEM\CurrentControlSet\Services\lanmanserver\parameters
$NullSessionPipes = "$($RegExplorer.NullSessionPipes)"
$NullSessionPipes
$NullSessionPipes = $NullSessionPipes.replace("browser", "")
$NullSessionPipes

只要检查的注册表项与我指定的情况 - “浏览器”完全匹配,脚本就可以正常工作。

但是,如果注册表项中的大小写不同,请说“BROWSER”或“Browser”,它不会进行替换。

我正在寻找某种方法来使 string.replace 不区分大小写。我知道我可以先使用 .tolower 或 .toupper 转换字符串以使比较更容易,但我不知道这个特定的注册表项或访问它的应用程序是否区分大小写,所以我不想改变大小写现有 key 。

是否有捷径可寻?

最佳答案

称我为迂腐,但虽然这里没有人是完全错误的,但也没有人为最终解决方案提供正确的代码。

您需要更改此行:

$NullSessionPipes =  $NullSessionPipes.replace("browser", "")

对此:
$NullSessionPipes =  $NullSessionPipes -ireplace [regex]::Escape("browser"), ""

只要您的字符串中没有正则表达式字符(例如 *+[]() 等),奇怪的 [regex] 文本并不是绝对必要的。但是你用它更安全。此语法也适用于变量:
$NullSessionPipes =  $NullSessionPipes -ireplace [regex]::Escape($stringToReplace), $stringToReplaceItWith

关于powershell - 不区分大小写的 PowerShell 替换,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9117623/

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