我在哪里可以获得有关Powershell ISE中方法和属性的帮助文档[示例]。例如Join
方法。
-join $a[3,4,5]; #trying to extract a part of a string
当我($a | gm)
时,它甚至没有列出。
答案 0 :(得分:4)
使用(.NET)对象的方法和属性,Powershell中存在的运算符和cmdlet之间存在混淆。 gm
或Get-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 。