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.
次の文字列を解析しようとしていますが、かなり基本的な正規表現を正しく取得できません。オプションのグループ化構文が間違っていると思います。データは次のいずれかになります。
PV{X} PV{X.X} PV{X.X.X} PV{X.X.X.X}
使用:
^PV\{\d+(\.\d+){0, 3}\}$
どこ:
次の正規表現を検討してください...
PV{\d{1,4}(.\d{1,4})*}