Where could I get help documentation [examples] about methods and properties in the Powershell ISE. For example the Join method.
-join $a[3,4,5]; #trying to extract a part of a string
It is not even listed when I do ($a | gm).
Where could I get help documentation [examples] about methods and properties in the Powershell ISE. For example the Join method.
-join $a[3,4,5]; #trying to extract a part of a string
It is not even listed when I do ($a | gm).
You are confusing between operators and cmdlets that are present in Powershell with methods and properties of (.NET) objects.
gmorGet-Memberwill only show the latter.You can learn about
-joinby doingget-help about_joinor look here - http://technet.microsoft.com/en-us/library/hh847757.aspxTake a look at
about_Operatorto learn about other available operators - http://technet.microsoft.com/en-us/library/hh847732.aspx