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.
gm
orGet-Member
will only show the latter.You can learn about
-join
by doingget-help about_join
or look here - http://technet.microsoft.com/en-us/library/hh847757.aspxTake a look at
about_Operator
to learn about other available operators - http://technet.microsoft.com/en-us/library/hh847732.aspx