我正在尝试在AppleScript中创建一个应用程序来读取文本文件中的歌曲列表,并且我能够正确读取文件,直到文本中有撇号(')。
我的文字文件的内容为
Follow Me Down
Money For Nothing
Better When I’m Dancin’
代码是:
set theFile to "/path/to/file"
set fileHandle to open for access theFile
set songs to the paragraphs of (read fileHandle)
close access fileHandle
display dialog songs
但AppleScript会输出Can’t make {"Follow Me Down", "Money For Nothing", "Better When I‚Äôm Dancin‚Äô"} into type string.
。我知道还有另一个错误,它说不能将数组类型化为字符串,我不关心,因为我只想要数组的输出,我关心的是为什么撇号使它输出“,ôô “而不是。
如果有人能帮助我修改撇号改为字符“,ôô”,那就太棒了,也知道为什么会发生这种情况也很好。