我无法找出正确的PHP正则表达式来匹配这些条件:
"Hello World!" //should be true
" Hello World! " //should be false
"Hello World!" //should be false
以下示例应该失败:
"a" //should fail because the length is less than 2
"whatsup@gmail.com" //should be false because of @ symbol
以下示例应通过:
"£ª¡™ƒ˚å 象形字 123" //should be true
What's up? 123" //should be true
"!#$%^&*(){}-_+" //should be true
到目前为止我所拥有的是:
/^((?!@).)*$/
此PHP正则表达式当前接受字符,不包括@符号,并包含数字。
任何帮助将不胜感激!