我正在尝试从变量中获取一些数据:
Select-String -inputObject $patternstring -Pattern $regex -AllMatches
| % { $_.Matches } | % { $_.Value } -OutVariable outputValue
Write-Host $outputValue
对于同样的不变量,我正在尝试进行字符串操作
$outputValue.Substring(1,$outputValue.Length-2);
这失败了,说明outputValue是一个ArrayList
.
如何转换Arraylist
为String
?