在下面的代码中,有没有办法从第三段引用第二段中的当前对象?
`$a = "one", "two", "three"`
`$a | % {$_ -replace "t","x" } | % { $_ }`
稍微不同地解释一下,我希望能够| % { "$_.$_ : $_" }
在第三个管道段中使用类似的东西来获得这个输出:
one: one
two: xwo
three: xhree
在下面的代码中,有没有办法从第三段引用第二段中的当前对象?
`$a = "one", "two", "three"`
`$a | % {$_ -replace "t","x" } | % { $_ }`
稍微不同地解释一下,我希望能够| % { "$_.$_ : $_" }
在第三个管道段中使用类似的东西来获得这个输出:
one: one
two: xwo
three: xhree