我在Applescript中創建了一個'從列表中選擇',其中的選項是.txt文件中的行。它看起來像這樣:applescript從列表結果中選擇
set listofUrls to {}
set Urls to paragraphs of (read urlList)
repeat with nextLine in Urls
if length of nextLine is greater than 0 then
copy nextLine to the end of listofUrls
end if
end repeat
choose from list listofUrls with title "Refine URL list" with prompt "Please select the URLs that will comprise your corpus." with multiple selections allowed
這個作品非常漂亮,如果我返回結果',我得到在正式的「網址X」結果窗口列表「urlb」等
的問題是看過那部當我嘗試這個列表保存到一個文本,用,例如:
write result to newList
文件的格式是奇怪:
列表utxtÇhttp://url1.htmlutxtÇhttp://url2.htmlutxt~http://url3.htmlutxtzhttp:// ...
似乎空字符已經插入了。那麼,有人知道發生了什麼嗎?任何人都可以想辦法:
a)寫結果爲乾淨(最好是換行符)txt? b)清理這個輸出,使其恢復正常?
謝謝你的時間! 丹尼爾
我可以看到你的文件寫入代碼,那是你遇到問題的地方 – mcgrailm