Powershell中插入符号(^)的转义字符

时间:2018-11-02 17:39:30

标签: regex powershell

我需要用制表符(“ t") in a CSV file in Powershell. I tried escaping caret with a backtick( ^〜`^)替换” ^〜^“,但是它不起作用。该怎么办?

$ file =导入Csv $ dataFilePath

$ file -replace“ ^~ ^”,“`t”

1 个答案:

答案 0 :(得分:0)

这是您要找的吗?

 >$s = "^~^"
 >$s -replace "\^\~\^", "``t"
 `t

希望有帮助。