There was (at least) one error in what I wrote in my last message:
On Feb 24, 2007, at 5:31 PM, Nobumi Iyanaga wrote:
By the way, for iconv, you would do something like the following
(from within your AppleScript code):
set my_str to ... -- your data in ISO 8859/5, for example
try
set res to do shell script "iconv -f ISO-8859-5 -t UTF-8" & quoted
form of my_str
on error errMsg
display dialog errMsg
return
end try
The line "set res to do shell script "iconv -f ISO-8859-5 -t UTF-8" &
quoted form of my_str" is not correct; you have to write:
set res to do shell script "iconv -f ISO-8859-5 -t UTF-8" & space &
quoted form of my_str
Note that I didn't do any testing... Please use this with caution!!