簡單的問題可能有一個簡單的答案,但我目前的解決方案看起來很可怕。Lua:如何檢查一個字符串是否只包含數字和字母?
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?
在此先感謝。
什麼是「strf」?什麼是'$ list'?這不是有效的Lua運營商。 –
我創建的東西,它是string.format的簡寫。 –
輸入它有點太快,沒有回頭看,它是固定的:P –