gpt4 book ai didi

powershell - 将Powershell对象属性的名称值转换为字符串

转载 作者:行者123 更新时间:2023-12-03 00:23:29 25 4
gpt4 key购买 nike

我已导入一个csv文件

$infile = import-csv .\myfile.csv

现在,我可以通过显示列(现在是对象属性)
$infile | gm -type NoteProperty

Name MemberType

------- ----------

Column1 NoteProperty

Column2 NoteProperty

etc...

我要做的是将 Name(Column1..)的值转换为变量。

最佳答案

您可以使用select

$infile | gm -type NoteProperty | select -ExpandProperty Name

例如。,
$Names = @( $infile | gm -type NoteProperty | select -ExpandProperty Name )

关于powershell - 将Powershell对象属性的名称值转换为字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27068904/

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