gpt4 book ai didi

windows - 使用 PowerShell 在表中格式化三个数据列表

转载 作者:可可西里 更新时间:2023-11-01 09:49:30 24 4
gpt4 key购买 nike

我有三个要打印的数字列表。这三个表是三个数的集合。它们具有相同数量的元素,所以从所有三个元素的第一个位置开始,到最后一个,我必须打印这样的内容

Element in list1 pos1  |  Element in list2 pos1  |  Element in list3 pos1
Element in list1 pos2 | Element in list2 pos2 | Element in list3 pos2
Element in list1 pos3 | Element in list2 pso3 | Element in list3 pos3
Element in list1 pos4 | Element in list2 pos4 | Element in list3 pos4

...

如何使用 Format-Table 做到这一点?或者更好的是,我如何使用 Format-Table cmd-let 来解决这个问题?

谢谢

最佳答案

这是一种解决方案:

$c0=357,380,45
$c1=12,20,410
$c2=223,270,30

0..($c0.Length -1) |
select-object (
@{n="one"; e={$c0[$_]}},
@{n="two"; e={$c1[$_]}},
@{n="three"; e={$c2[$_]}}
) |
format-table -auto;

结果:

one two three
--- --- -----
357 12 223
380 20 270
45 410 30


解释

@{n="blah"的每个实例; e={blah}} 是一个哈希表。这些键是“名称”和“表达式”的缩写。参见示例 4 on this page .

“$_”表示正在通过管道传入的值。在这种情况下,每个索引值都通过管道传入 select 语句。

关于windows - 使用 PowerShell 在表中格式化三个数据列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5206418/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com