I have a collection of objects with properties:
$col = @{....}
and the data is something like this:
id name items
--- ---- -----
01 a (a, b, c, d)
02 ....
items are array of strings. If I output the content of $col, the data are displayed as above. Is there any way to output values like this?
id name items
--- ---- -----
01 a a
b
c
d
02 b
03 c c1
04 d d1
d2
05 ...
Updated, the items column may contain empty, one or more than one items.