我有点困惑,搞不懂。我有以下代码,它只是用空字符替换了第二个位置的字符。
$list -replace $list[1],""
这没什么特别的。
但是,我想知道如何$list
通过管道传递并访问它。
像这样:
Command-With-String-Output | replace-some-how pipvar[1],""
谢谢。
答案1
谢谢@SimonS
$list = "abcde"
$list | %{$_ -replace $_[1],"" }
acde
我有点困惑,搞不懂。我有以下代码,它只是用空字符替换了第二个位置的字符。
$list -replace $list[1],""
这没什么特别的。
但是,我想知道如何$list
通过管道传递并访问它。
像这样:
Command-With-String-Output | replace-some-how pipvar[1],""
谢谢。
谢谢@SimonS
$list = "abcde"
$list | %{$_ -replace $_[1],"" }
acde