查找字符串中的任何特殊字符

Find any special characters in a string

我仍然努力 match 一个包含特殊字符(标点符号、下划线等)的 string。我怎样才能让它与模式一起工作?

if string.match(mystr, '???') ~= nil then
  print('Invalid characters.')
end

字符集[...]是你的朋友

.*[@!#$%^&*()?<>].*