使用grep在xml标记内获取文本

时间:2011-11-25 15:04:40

标签: regex bash tags grep

这是星期五下午,我的大脑已冻结了!

grep -E -m 1 -o "<title>(.*)</title>" myfile.rss

返回

<title>Some title</title>

我如何获得Some title

1 个答案:

答案 0 :(得分:23)

进一步管道,例如

sed -e 's,.*<title>\([^<]*\)</title>.*,\1,g'