尝试使用范围表示法循环索引在脚本文件中循环遍历$ args时出错

时间:2010-03-02 23:31:26

标签: powershell powershell-v2.0

我无法弄清楚以下代码失败的原因:

# test.ps1
"`$args: ($args)"
"`$args count: $($args.length)"

# this fails
0..$($args.length - 1) | %{ $args[$_] = ($args[$_] -replace '`n',"`n") }

# this works
$i = 0
foreach ( $el in $args ) { $args[$i] = $args[$i] -replace '`n',"`n"; $i++ }
"$args"

我这样称呼它:

rem from cmd.exe
powershell.exe -noprofile -file test.ps1 "a`nb" "c"

2 个答案:

答案 0 :(得分:7)

范围问题。 foreach-object(%)scriptblock中的$ args是该scriptblock的本地。以下作品:

"`$args: $args" 
"`$args count: $($args.length)" 
$a = $args

# this fails 
0..$($args.length - 1) | %{ $a[$_] = ($a[$_] -replace '`n',"`n") } 
$a

答案 1 :(得分:2)

凯斯回答了这个问题。只是想添加更多信息,因为我发现它很多次都很有用。看一下代码:

[21]: function test{
>>     $args -replace '`n',"`n"
>> }
>>
[22]: test 'replace all`nnew' 'lines`nin the `nstring' 'eof`ntest'
replace all
new
lines
in the
string
eof
test

-replace运算符也适用于数组!