Im trying to join a number of elements of an array into a string using this;

$a = "h","e","l","l","o" $b = [string]::join("", $a[0,1,2,3])

But I get a 'Missing ')' in method call' error. The join documentation only mentions joining all the elements of an array, not elements at specific indexes. Can this be done?

Cheers

Andy

link|improve this question
feedback

2 Answers

up vote 10 down vote accepted

Wrap the content of "$a[0,1,2,3]" with "$()" or "()"

PS> [string]::join("", $($a[0,1,2,3]))
hell
PS> [string]::join("", ($a[0,1,2,3]))
hell

-- Or --

you can use range operator ".."

PS> [string]::join("", $a[0..3])
hell
link|improve this answer
Cheers Sung, thats awesome! – Andy Walker Mar 6 '09 at 1:12
feedback

PS > & {$ofs=""; "$($a[0,1,2,3])"}
hell

link|improve this answer
feedback

Your Answer

 
or
required, but never shown