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.
このテキストから「246」を抽出しようとしています:
Responsible: John Doe Number: 246 Date: 24-12-2005
QRegExp を使用したパターン:
(?:Number: )\d+
私は得ると思っていました:
246
しかし、代わりに私は持っています:
Number: 246
グループのキャプチャを避けようとしています。
おそらく次のような正規表現が必要です。Number: (\d+)これにより、グループ 1 の数字が明示的にキャプチャされ、 で取得できますcap(1)。 cap(0)のような非キャプチャ グループを含む一致全体を返し(?:Number: )ます。
Number: (\d+)
cap(1)
cap(0)
(?:Number: )