使用 c++ 解析 robots.txt 文件
是否有任何库可以解析robots.txt
,如果它不存在,我如何使用 boost regex 在 C++ 中编写它?
is there is any library to parse robots.txt
, and if it does not exist, how can i write it in c++ with boost regex?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看示例 在 Boost Regex 库中。如果您编辑问题以更好地了解您在 robots.txt 文件中查找的内容,有人可以帮助您使用正则表达式语法。
例如,如果您尝试查找文件中所有用户代理的名称,则可以使用如下表达式。
Check out the examples in the Boost Regex library. If you edit your question to give a better idea of what exactly you are looking for in your robots.txt file, someone can help you with the Regex syntax.
For example, if you are trying to find the names of all User-agents in the file, you could use an expression like this.