gpt4 book ai didi

excel - Powershell脚本将txt转换为xlsx

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

我想将文本文件转换为 Excel 格式。我使用来自 Technet 的以下脚本:

# Script name: ConvertTilde.ps1 
# Created on: 2007-01-06
# Author: Kent Finkle
# Purpose: How Can I Convert a Tilde-Delimited File to Microsoft Excel Format?

$s = gc C:\Scripts\Test.txt
$s = $s -replace("~","`t")
$s | sc C:\Scripts\Test.txt
$xl = new-object -comobject excel.application
$xl.Visible = $true
$wb = $xl.Workbooks.Open("C:\Scripts\Test.txt")
$wb.SaveAs(“D:\Excel\Test.xlsx”)

脚本有效,excel 打开并导入 txt,但保存的文件只是重命名为 xlsx 的 txt 文件 - 如何让 Excel 更改文件格式?

最佳答案

我会调查 SaveAs 的 FileFormat 参数。方法,尽管它不会神奇地将文本文件转换为格式良好的工作簿。

关于excel - Powershell脚本将txt转换为xlsx,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22560483/

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