2017-10-17 100 views
0

我有兩個文本文件,比方說含有:PowerShell的:OUT-GridView控件與文本文件

的1.txt:

1 
2 
3 
4 
5 
6 

2.txt:

a 
b 
c 
d 
e 
f 

我嘗試讀取文件,然後將結果輸出到Out-Gridview(每個文件位於其自己的列中):

1 a 
2 b 
3 c 
4 d 
5 e 
6 f 

我想:

$list1= gc 1.txt 
$list2= gc 2.txt 



$list1 | Add-Member -Name "LIST 2" -MemberType NoteProperty -Value $liste2 


$list1 | out-gridview -wait 

但我得到的是:

enter image description here

我怎麼能讀,然後輸出到GridView的列,每列的文本文件?非常感謝你,我不知道這一點......

回答

0

當你只有兩列時創建一個散列表。 就像是:

$a = 1,2,3,4 
$b = "a","b","c","d" 
$hashtable = @{} 

for($i = 0;$a.Count -gt $i;$i++){ 
    $hashtable.Add($a[$i],$b[$i]) 
} 

$hashtable | Out-GridView 

,如果你有兩個以上的列,創建自定義對象

+0

謝謝,我已經決定要使用不同的方式,但是這是有幫助的! – Rakha