简单的问题可能有一个简单的答案,但我目前的解决方案似乎很糟糕。
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?
提前致谢。
答案 0 :(得分:7)
如果您要查看字符串是否仅包含字母数字字符,那么只需将该字符串与所有非字母数字字符匹配:
if(str:match("%W")) then
--Improper characters detected.
end
模式%w
匹配字母数字字符。按照惯例,大于而不是小写的模式匹配反向字符集。因此%W
匹配所有非字母数字字符。
答案 1 :(得分:4)
您可以使用[]
local patt = "[?!@]"
if string.match ( mystr , patt ) then
....
end
请注意,lua中的字符类仅适用于单个字符(不是单词)。
有内置类,%W
匹配非字母数字,所以继续使用它作为捷径。
您还可以将内置类添加到您的集合中:
local patt = "[%Wxyz]"
将匹配所有非字母数字和字符x
,y
或z
答案 2 :(得分:0)
我使用这个Lua双线:
$a = 'Graeme\'s example';
echo $a;
当检测到非字母数字时,它返回false