简单的问题可能有一个简单的答案,但我目前的解决方案似乎很糟糕。
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?
提前致谢。