Hi i would need to transform a table in a text file, delimiter is tab, with multiple columns into one single column, where col1 ist on top, col2 below, col3 below col2 and so, using powershell Example:
data10 data20 data30
data11 data21 data31
data12 data22 data32
改为
data10
data11
data12
data20
data21
data22
data30
data31
data32
Output should be exported to a file. Help would be much appreciated! :-)
只有方法我才能找出是, 逐行列出数据行, 可以说
data10
data20
data30
data11
data21
但这不是我需要的