PowerShell:成员:ISE中的方法和属性文档

时间:2013-09-05 15:00:36

标签: powershell powershell-v3.0 powershell-ise

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

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

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

2 个答案:

答案 0 :(得分:4)

使用(.NET)对象的方法和属性,Powershell中存在的运算符和cmdlet之间存在混淆。 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

答案 1 :(得分:2)

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

参见 get-help about_operators (查找Split and Join Operators)和 get-help about_join