C# 从字符串中提取值
我正在尝试从字符串中提取一个值。该字符串如下所示:
<iframe src="/test.php?aed=asd" width="0" height="0" scrolling="no" frameborder="0"></iframe>
链接中唯一发生变化的是 aed 之后的值。提取它的最简单方法是什么?
谢谢
I'm trying to extract a value from a string. The string looks like this:
<iframe src="/test.php?aed=asd" width="0" height="0" scrolling="no" frameborder="0"></iframe>
The only thing that changes in the link is the value after aed. What would be the easiest way to extract it?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要正确执行此操作,您应该使用 HTML 解析库,但为了进行简单的提取,您可以使用类似以下内容的方法:
含义:在看到字符串“/test.php?aed=”后,将所有内容与下一个引号或与号相匹配。
To do this properly you should be using an HTML parsing library, but for a simple extraction, you can use something like:
Means: after seeing the string "/test.php?aed=", match everything up to the next quote or ampersand.