1

在 PowerShell 中,如何取消转义 unicode 转义字符串?

$str1 = "http:\u002f\u002fgoogle.com\u002fsomething\u002ftest"

http://google.com/something/test
4

1 回答 1

5

执行此操作的代码是:

[Regex]::Replace($str1, "\\[Uu]([0-9A-Fa-f]{4})", 
         {[char]::ToString([Convert]::ToInt32($args[0].Groups[1].Value, 16))} )
于 2013-08-26T18:06:04.530 回答