4

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

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?

提前致谢。

4

3 回答 3

10

如果您要查看字符串是否仅包含字母数字字符,则只需将该字符串与所有非字母数字字符进行匹配:

if(str:match("%W")) then
  --Improper characters detected.
end

该模式%w匹配字母数字字符。按照惯例,大写而不是小写的模式匹配反向字符集。所以%W匹配所有非字母数字字符。

于 2012-08-24T23:50:35.330 回答
4

您可以使用[]

local patt = "[?!@]"

if string.match ( mystr , patt ) then
    ....
end

请注意,lua 中的字符类仅适用于单个字符(而不是单词)。有内置的类,%W匹配非字母数字,所以继续使用它作为快捷方式。

您还可以将内置类添加到您的集合中:

local patt = "[%Wxyz]"

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

于 2012-08-28T02:03:32.807 回答
0

我使用这个 Lua 两线:

  local function envIsAlphaNum(sIn)
    return (string.match(sIn,"[^%w]") == nil) end

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

于 2016-11-23T12:23:02.993 回答