-3

テキストパターンが次のようなテキストファイルから「Drops:XXXXX」を抽出したいと思います。

Pkts: 215104502  Bytes: 202537648280   Drops: 1302599
Pkts: 55330252  Bytes: 52018951784   Drops: 22086
Pkts: 46226143  Bytes: 42980694784   Drops: 0
Pkts: 52931264  Bytes: 49764764008   Drops: 0
Pkts: 60616843  Bytes: 57773237704   Drops: 1280513
Pkts: 215104502  Bytes: 202537648280   Drops: 1302599.

私はどんなパターン検索方法にもオープンです(grep、awk、python)

ありがとう

4

2 に答える 2

3

グーグルで数分すると、正規表現が必要であり、ansewrは次のようになります。

re.search(r'(?<=Drops: )\d+', input_string).group(0)
于 2013-01-02T20:50:12.287 に答える
1

あなたと一緒awkにできること:

awk '{ print $5, $6 }' text
于 2013-01-02T20:58:26.043 に答える