Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
以下代码行可以很好地检查邮政编码格式。但是它不允许在两者之间使用空格:
var postMatch = /[A-z]{1,2}[0-9]{1,2} ?[0-9][A-Z]{2}/i;
这是正确的:se34tyu
这个号码:se34 tyu
我可以添加什么来实现这一点?
完整代码
用于\s*允许可选空间。
\s*
/[A-z]{1,2}[0-9]{1,2}\s*[0-9][A-Z]{2}/i