Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am exploring options for presenting multidimensional array in some specified format. Desired output is a single line string with elements within each dimension separated by specified character. For example:

$foo = @(@("A","B","C"),@("1","2","3"))
$bar = @()

foreach ($i in $foo)
{
    $bar += $i -Join ", "
}

$bar -join "; "

Produces desired output. When number of dimensions in the array grows, or is variable within the nested elements, this approach becomes cumbersome.

I am wondering if exists some Powershell magic to assist with this task. Ideally, something like:

$foo[([] -join ", ")] -join "; "

And perhaps a solution that will scale well for more complex array configurations.

Thoughts?

share|improve this question

1 Answer

up vote 4 down vote accepted

this way?

$foo = @(@("A","B","C"),@("1","2","3"))

($foo | % { $_ -join ',' }) -join '; '
share|improve this answer
   
Of course! Thanks! – Yevgeniy Nov 14 '12 at 19:59
Glad to help!!! – C.B. Nov 14 '12 at 20:01

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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