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.
我有一串长度可能不同的数字,我只想返回最后 4 位数字。我会使用积极的回顾吗?并使用$锚定到?
使用这个正则表达式\d{4}$
\d{4}$
如果您的字符串可以是任意长度并且您想要匹配具有 0 到 3 个字符的情况,您应该使用:
\d?\d?\d?\d?$
或者,如果正则表达式引擎理解它:
\d{0-4}$