0

我需要修改 Powershell 属性Description中的内容,然后使用中的内容Sort-Object,怎么办?以下是我的示例,它不起作用:

Sort-Object -Property $($_.Description).Split(":")[2].Trimend(")") -Descending
4

1 回答 1

0

将计算的属性表达式包装在{}

Sort-Object -Property {$_.Description.Split(":")[2].TrimEnd(")")} -Descending
于 2019-10-25T13:07:08.687 回答