我的网站上有一个注册表单,我希望它只在输入的用户名符合此格式时才能处理:
joe.cool
mary.swanson
peter.jackson
等..
我认为必须可以使用preg_match
命令执行此操作,例如:
if (preg_match("/[^0-9]/",$stringabc)) -> then proceed
但是,我无法确切地知道要放在preg_match()
..
非常感谢任何帮助!
答案 0 :(得分:0)
AutoCompleteTextView