C# 从字符串中提取值

发布于 2024-10-14 20:28:11 字数 218 浏览 2 评论 0原文

我正在尝试从字符串中提取一个值。该字符串如下所示:

<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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

夕嗳→ 2024-10-21 20:28:11

要正确执行此操作,您应该使用 HTML 解析库,但为了进行简单的提取,您可以使用类似以下内容的方法:

Regex.Match(s, @"(?<=/test\.php\?aed=)[^""&]+").Value

含义:在看到字符串“/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:

Regex.Match(s, @"(?<=/test\.php\?aed=)[^""&]+").Value

Means: after seeing the string "/test.php?aed=", match everything up to the next quote or ampersand.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文