标签: lua lua-patterns
我仍然需要花费大量时间来match string包含特殊字符(标点符号,下划线等)。如何使其与模式一起使用?
match
string
if string.match(mystr, '???') ~= nil then print('Invalid characters.') end
答案 0 :(得分:1)
字符集[...]是您的朋友。
[...]
.*[@!#$%^&*()?<>].*