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}$