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.
任何帮助将不胜感激。我需要创建一个允许任何四位数字的正则表达式,除了以“88”或“89”开头的数字
您可以使用这个基于负前瞻的正则表达式:
^(?!8[89])[0-9]{4}$
阅读更多关于它的信息
考虑以下正则表达式...
(8[\d-[89]]{1}|[\d-[8]]{1}\d)\d{2}
编辑:
解释: