簡単な質問には簡単な答えがあるかもしれませんが、私の現在の解決策はひどいようです。
local list = {'?', '!', '@', ... etc)
for i=1, #list do
if string.match(string, strf("%%%s+", list[i])) then
-- string contains characters that are not alphanumeric.
end
end
これを行うためのより良い方法はありますか..多分string.gsubで?
前もって感謝します。