操作属性并在排序对象中使用

时间:2019-10-25 12:38:10

标签: powershell properties sort-object

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

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

1 个答案:

答案 0 :(得分:0)

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

Sort-Object -Property {$_.Description.Split(":")[2].TrimEnd(")")} -Descending