I have a multibyte string in Lua.
local s = "あいうえお"
How do I take the string and split it into a table of strings?
In English texts, then I can use this code. But this does not work with the multibyte.
local s = "foo bar 123"
local words = {}
for word in s:gmatch("%w+") do
table.insert( words, word )
end
For a start .. from this SO question How to write a unicode symbol in lua, RBerteig's answer points to a library slnunicode
Also referred to in this SO question Is there any lua library that converts a string to bytes using utf8 encoding