テキスト ファイルの一部を返すスクリプトがありますが、テキスト ファイルを直接表示したときに表示されない文字が返されることがあります。たとえば、次のような単語です。
breeders
になる
breed‰ rs
テキスト リターンに "as Unicode text" を追加しようとしましたが、うまくいきません。考え?これが私のスクリプトです:
set some_file to "[...]Words.txt" as alias
set the_text to read some_file as string
set the text item delimiters of AppleScript to ", "
set the_lines to (every text item of the_text)
return some item of the_lines as Unicode text