题
哪种工具(最好是Linux)可以根据CSS路径选择HTML元素的内容?
例
例如,考虑以下HTML文档:
<html>
<body>
<div class="header">
<h1>Header</h1>
</div>
<div class="content">
<table>
<tbody>
<tr><td class="data">Tabular Content 1</td></tr>
<tr><td class="data">Tabular Content 2</td></tr>
</tbody>
</table>
</div>
<div class="footer">
<p>Footer</p>
</div>
</body>
</html>
哪些命令行程序(例如,一种“ cssgrep”)可以使用CSS选择器提取值?那是:
cssgrep page.html "body > div.content > table > tbody > tr > td.data"
该程序会将以下内容写入标准输出:
Tabular Content 1
Tabular Content 2
相关链接
- https://getfirebug.com/wiki/index.php/Command_Line_API#.24.24.28selector.29
- /programming/7334942/is-there-something-like-a-css-selector-or-xpath-grep
- https://github.com/keeganstreet/element-finder
- http://www.w3.org/Tools/HTML-XML-utils/
谢谢!
brew install html-xml-utils
。