gpt4 book ai didi

excel - 使用 Applescript 从 Excel 保存干净的 CSV 文件

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

我有一个过程,需要从 Web 下载 Excel 电子表格,使用 Excel Mac 2008 打开它,将其另存为 csv 文件,然后使用 php 解析它。手动过程运行良好并保存干净的 CSV 文件。我正在尝试使用 Applescript 自动化这部分,并且它有点有效,但是生成的 CSV 文件包含一堆奇怪的字符。

这是我正在处理的 Applescript:

tell application id "com.microsoft.Excel" to open "~/Documents/input.xls"
tell application id "com.microsoft.Excel" to tell active sheet to save in ("output.csv") as "CSV file format"

我尝试了各种 CSV 选项(Mac、Windows、MSDos),它们不会产生明显不同的结果。

最佳答案

试试这个...

set theDoc to (path to desktop as text) & "test.xlsx"
set outPath to (path to desktop as text) & "test.csv"

tell application "Microsoft Excel"
open file theDoc
tell workbook 1
tell sheet 1
save in outPath as CSV file format
end tell
close without saving
end tell
end tell

关于excel - 使用 Applescript 从 Excel 保存干净的 CSV 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5688803/

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