2

我在哪里可以获得有关 Powershell ISE 中的方法和属性的帮助文档 [示例]。比如Join方法。

-join $a[3,4,5]; #trying to extract a part of a string

当我这样做时,它甚至没有列出($a | gm)

4

2 回答 2

4

您将 Powershell 中存在的运算符和 cmdlet 与 (.NET) 对象的方法和属性混淆了。gmGet-Member只会显示后者。

您可以-join通过执行get-help about_join或查看此处了解 - http://technet.microsoft.com/en-us/library/hh847757.aspx

看看about_Operator以了解其他可用的运营商 - http://technet.microsoft.com/en-us/library/hh847732.aspx

于 2013-09-05T15:12:04.563 回答
2

那是因为-join不是“方法”,而是运算符

get-help about_operators(寻找Split and Join Operators)和get-help about_join

于 2013-09-05T15:13:04.817 回答