标签: php regex preg-match
我正在尝试验证将插入数据库中的邮政地址。
用户可以将地址字段保留为空白,或者最多输入100个字符。
在正则表达式中指定blank to 100字符的正确方法是什么?
blank to 100
此方法有效:preg_match('/^[a-z0-9\s]{0,100}$/i',$str),但我也看到它像这样preg_match('/^[a-z0-9\s]{,100}$/i',$str)
preg_match('/^[a-z0-9\s]{0,100}$/i',$str)
preg_match('/^[a-z0-9\s]{,100}$/i',$str)
最好的方法是什么?