如何获取两个特定关键字内的html文件的所有文本
我有一个 html 文件和两个关键字,我想获取这两个关键字中的所有文本。我应该使用正则表达式吗?我想将这两个关键字作为输入。 如果你举个例子会很有帮助。
I have a html file and two keywords and i want to get all text which resides inside those two keywords. Should i use regex? I want to take those two keywords as input.
It would be helpful if you give an example.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,使用正则表达式:
keyword1(.*?)keyword2
。 PHP 示例:阅读:preg_match_all() 和 模式修饰符。
Yes, use Regex:
keyword1(.*?)keyword2
. PHP example:Read: preg_match_all() and Pattern Modifiers.
正如 Dor 所说,但是以下示例:
输出:
As what Dor said, but the example of:
Outputs: