gpt4 book ai didi

text - Applescript,将行读取为变量

转载 作者:行者123 更新时间:2023-12-02 05:07:38 25 4
gpt4 key购买 nike

我希望 Applescript 从 txt 文件中设置变量,逐行或逐字符读取。也许像 php 函数:get_file_contents。有没有类似的东西或者你能给我提供方法吗?

我知道如何设置文件路径。好像是

    set myfile to "/Users/Username/Desktop/test.txt"
set theText to read myfile

在txt文件中,一行就是一个整数,比如

    1
2
3
4
5

如果我用

    set theTextList to paragraphs of theText

结果将带有引号""。

我只想将这些整数设置为一个变量。这样我以后就可以使用了,比如

   set variable to 5  --here I would like to replace the real number 5 to the number I read from the txt file(just one line)

start slideshow
show slide variable

预先感谢您的帮助。

最佳答案

如果文件的行由回车符分隔,那么这样的事情应该有效:

set allRecords to read myfile using delimiter return
repeat with aRecord in allRecords
if length of aRecord is greater than 0 then
set variable to aRecord
log "variable: " & variable
end if
end repeat

如果文件中的分隔符与 return 不同,您可以更改代码第一行中的分隔符。

关于text - Applescript,将行读取为变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16044127/

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