Please help
I'm trying to send arabic text to array of arabic letters using string.gmatch in corona sdk so please help to do it right
local lArray={}
local t="من جد وجد ومن زرع حصد"
for value in string.gmatch(t,".") do
lArray [index] = value
print(value)
index = index + 1
end
The output is this character
2013-12-25 22:48:01.337 Corona Simulator[4878:507] Ù
2013-12-25 22:48:01.337 Corona Simulator[4878:507] …
2013-12-25 22:48:01.337 Corona Simulator[4878:507] Ù
2013-12-25 22:48:01.338 Corona Simulator[4878:507] †
appreciate your help
I found this solution in this post here