vote up 5 vote down star

Hi Guys,

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

flag

2 Answers

vote up 9 vote down check

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|flag
Cheers Sung, thats awesome! – Andy Walker Mar 6 at 1:12
You're welcome. No. it's Powershell that's awesome! ;) – Sung Meister Mar 6 at 1:13
vote up 5 vote down

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

link|flag
+1; $OFS: I can't belive that I haven't thought of it ;) – Sung Meister Mar 8 at 4:57

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.