在 Hpricot 中将 id 与正则表达式进行匹配的最佳方法是什么?
使用 apricot,可以很容易地看到如何使用 CSS 选择器提取具有给定 id 或类的所有元素。是否可以根据这些元素的某些属性是否与某些正则表达式匹配来从文档中提取元素?
Using apricot, it is pretty easy to see how I can extract all elements with a given id or class using a CSS Selector. Is it possible to extract elements from a document based on whether some attribute of those elements matches against some regular expression?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果你的意思是做类似的事情:
那么我认为这是不可能完成的。另一种方法是查找所有元素,然后迭代结果,删除那些与正则表达式不匹配的元素。
有很多替代方法。该线程还有另外两个建议: Hpricot 和正则表达式。
请注意,根据您要匹配的内容,您也许可以使用 Hpricot Wiki,例如:
If you mean do something like:
then I don't think it can be done. The alternative is to find all elements and then iterate through the results deleting those that don't match a regex.
There are lots of alternative approaches. This thread has two other suggestions: Hpricot and Regular Expression.
Note, depending on exactly what it is you are trying to match you may be able to use the "Supported, but different" syntaxes available on the Hpricot Wiki, e.g: