替换文件中每行的第一个和最后一个字符

时间:2015-01-29 10:58:51

标签: powershell replace character

我有一个文件,需要替换每行的第一个和最后一个字符。我不知道该文件有多少行。

这是我到目前为止所得到的:

$original_file = 'test.csv'
$destination_file =  'new.cvs'

$a = Get-Content $original_file
$i = $a.Length
$b = ""
$j = 0

if($j -ne $i) {
    $j = $j + 1
    $z = Get-Content $a | Select-Object -Index $j
    $z.replace (0, '$')
    $z.replace (z.Length, '$')
    $b = $b + $z
}

Set-content -path $destination_file -value $b

但它不起作用。我做错了什么?

1 个答案:

答案 0 :(得分:4)

你的事情太复杂了。只需使用正则表达式:

$original_file    = 'test.csv'
$destination_file = 'new.cvs'

(Get-Content $original_file) -replace '^.|.$', '$' |
  Set-Content $destination_file

^.匹配字符串中的第一个字符,.$匹配最后一个字符。正则表达式中的|表示替换,即“匹配此管道分隔列表中的任何替代项”。