我在哪里可以获得有关 Powershell ISE 中的方法和属性的帮助文档 [示例]。比如Join
方法。
-join $a[3,4,5]; #trying to extract a part of a string
当我这样做时,它甚至没有列出($a | gm)
。
我在哪里可以获得有关 Powershell ISE 中的方法和属性的帮助文档 [示例]。比如Join
方法。
-join $a[3,4,5]; #trying to extract a part of a string
当我这样做时,它甚至没有列出($a | gm)
。
您将 Powershell 中存在的运算符和 cmdlet 与 (.NET) 对象的方法和属性混淆了。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
那是因为-join
不是“方法”,而是运算符。
见get-help about_operators(寻找Split and Join Operators
)和get-help about_join。