gpt4 book ai didi

Powershell - 将字符串输出为 CSV 和格式

转载 作者:行者123 更新时间:2023-12-01 22:33:09 29 4
gpt4 key购买 nike

我在下面给出了一个简单的例子。有谁知道我必须做什么才能将字符串输出到两列中。我的搜索在将输出格式化为 CSV 方面并没有得到多少返回。请指出正确的方向!谢谢!!!

$LogFile = c:\somefile.csv
"Hello World" | Out-File $LogFile

最佳答案

阅读补充问题的评论,围绕您尝试导出到 CSV 的变量创建 PSObject 可能会让您更好地控制输出。请考虑以下事项:

$A = "Hello";
$B = "World";

$wrapper = New-Object PSObject -Property @{ FirstColumn = $A; SecondColumn = $B }
Export-Csv -InputObject $wrapper -Path C:\temp\myoutput.txt -NoTypeInformation

创建包含两列(FirstColumnSecondColumn)和变量 $ 的文件 C:\temp\myoutput.txt A$B 放在第一行的那些列中

关于Powershell - 将字符串输出为 CSV 和格式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28590074/

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