Lua:如何检查字符串是否只包含数字和字母?

时间:2012-08-24 23:42:18

标签: lua pattern-matching alphanumeric non-alphanumeric

简单的问题可能有一个简单的答案,但我目前的解决方案似乎很糟糕。

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?

提前致谢。

3 个答案:

答案 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]"

将匹配所有非字母数字和字符xyz

答案 2 :(得分:0)

我使用这个Lua双线:

$a = 'Graeme\'s example';
echo $a;

当检测到非字母数字时,它返回false