与 Jericho HTML 解析器相关的查询
我想使用解析器确定正文中特定 H2(或 h3/h4/h5/h6)文本出现的位置号。通过位置编号,我的意思是在这个特定的 h2(或 h3/h4/h5/h6)短语之前出现的“单词”数量...此外,如果一个短语同时出现在 h2 和 h4 文本中(例如),那么如何确保我获得这两个文本的正确位置编号?
I want to determine the position number of occurrence of a specific H2 (or h3/h4/h5/h6) text within the body text, using the Parser. By position number I mean count of the number of 'words' that have occurred before this particular h2(or h3/h4/h5/h6) phrase...Also if a phrase occurs in both h2 and h4 text (for example) then how do I ensure that I am getting the correct position number for both of these texts?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
没有简单的方法可以满足这种非标准要求。
您必须找到标签,在其中找到文本,记住它们的位置,解析之前的所有内容并计算“单词”数。这不是火箭科学,但可能需要一些时间来编码和测试。
There's no easy way to do such non-standard requirement.
You must find tags, find text in them, remember their position, parse everything before and count 'words'. It's not rocket science, but it can take some time to code and test.