通过模式获取第n个范围
我的输入是这样的:
start
content A
end
garbage
start
content B
end
我想提取第二个(或第一个,或第三个...)start .. end
块。有了
sed -ne '/start/,/end/p'
我可以过滤掉垃圾,但是我如何得到“开始内容B结束”?
My input is like this:
start
content A
end
garbage
start
content B
end
I want to extract the second (or first, or third ...) start .. end
block. With
sed -ne '/start/,/end/p'
I can filter out the garbage, but how do I get just "start content B end"?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
但无论如何,如果你想要 sed - 你会得到 sed:)
中间匹配中 a 的数量等于你想要获得的段。您也可以像丹尼斯指出的那样在正则表达式中重复它。该方法允许为脚本指定直接编号。
注意:该脚本应使用
-n
sed
选项运行。But anyway, if you want sed - you get sed:)
The number of a's in the middle match equals to which segment you want to get. You could also have it in regexp repetion like Dennis noted. That approach allows for specifying direct number to the script.
Note: the script should be run with
-n
sed
option.获取所有范围
获取第二个范围
Ruby(1.9+),获取第一个范围
Get all range
Get 2nd range
Ruby(1.9+), get first range