2

我有 powershell 文件,其中我有如下的变量 decalration 行

[string] $global:myExePath = "\\myshare\code\scripts";

我想通过执行 powershell 脚本在运行时\\myshare\code\scripts替换。\\mynewshare\code1\psscript

我在用
Get-Content $originalfile | ForEach-Object { $_ -replace "\\myshare\code\scripts", $mynewcodelocation.FullName } | Set-Content ($originalfile)

如果正在执行 { $_ -replace "scripts", $mynewcodelocation.FullName }它工作正常,但它不适用于{ $_ -replace "\\myshare\code\scripts", $mynewcodelocation.FullName }

这里有什么问题?

4

1 回答 1

5

'\' 是一个特殊的正则表达式字符,用于转义其他特殊字符。您需要将每个反斜杠加倍以匹配一个反斜杠。

-replace "\\\\myshare\\code\\scripts",$mynewcodelocation.FullName 

当您不知道字符串的内容时,您可以使用 escape 方法为您转义字符串:

$unc = [regex]::escape("\\myshare\code\scripts")
$unc
\\\\myshare\\code\\scripts

-replace $unc,$mynewcodelocation.FullName 
于 2013-09-15T10:49:04.703 回答