<token text="everyone"/></string></equals></in></filter></or></and><in><scope text="/hardwiring.excludequery"/><token text="taloglsppublishedº00051974"/></in></andnot>) MANAGED(0, 0) STATS(0.0213, 0.0006, 1))]
假设我有这种类型的多行文件,我只需要从多行中提取 STATS(0.0213,0.0006,1)部分。
请建议一种方法,并解释使用的命令。??
答案 0 :(得分:0)
您可以使用grep
,
grep -Eo 'STATS\([^)]*\)' yourfile
(OR)
grep -o 'STATS([^)]*)' yourfile