从 xml 响应中提取 url
我需要从 XML 响应中提取 url。这是 XML 响应:
<cloud xmlns:xlink="http://www.w3.org/1999/xlink">
<rootContainer xlink:href="https://api.example.net/v2/bucket/92FBC29C-344C-99CF-827E-1B5586A7F8E3"
xlink:type="simple"/>
</cloud>
我正在使用 C 编写正则表达式。需要帮助。
我的输出需要是 https://api.example.net /v2/桶/92FBC29C-344C-99CF-827E-1B5586A7F8E3
I need to extract url from XML response. Here is the XML response:
<cloud xmlns:xlink="http://www.w3.org/1999/xlink">
<rootContainer xlink:href="https://api.example.net/v2/bucket/92FBC29C-344C-99CF-827E-1B5586A7F8E3"
xlink:type="simple"/>
</cloud>
I'm using C to write regex. Need help.
my output needs to be https://api.example.net/v2/bucket/92FBC29C-344C-99CF-827E-1B5586A7F8E3
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你不应该。如果可以选择,您应该出于任何数量或原因使用 XML 处理器。
但如果必须的话,您可以执行类似“rootContainer.xlink:href=\”([^\"]+)\”之类的操作,语法可能会有所不同,具体取决于您使用的正则表达式库 - 没有一个“正则表达式” ” 语法。
You shouldn't. If you have the option, you should use an XML processor for any number or reasons.
But if you must, you can do something like "rootContainer.xlink:href=\"([^\"]+)\" Syntax may vary depending on what regex library you're using - there isn't a single "regex" syntax.