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.
我需要一个 javascript reg ex 来强制用户在他们的英国邮政编码中输入一个空格。
有人可以帮忙吗?我发现的那些似乎允许可选空间,这不是我所追求的。
像这样的东西?相信它捕获了所有英国邮政编码,至少它捕获了我能想到的所有邮政编码
/^(\w{1,2}\d{1,2}\w?\s\d\w{1,2})$/