gpt4 book ai didi

c# - 在网页链接中搜索模式并将结果存储到数组

转载 作者:太空宇宙 更新时间:2023-11-03 13:41:16 25 4
gpt4 key购买 nike

如果找到 patten,我正在寻求存储指向数组的链接的帮助。到目前为止,我已经设置了一个带有网络浏览器的表单并加载了我的页面。

我需要搜索遵循以下格式的链接,并将 page= 之后的单词存储到数组中。我已经在网上搜索了没有运气的答案

/Contacts/Index/Neutral?page=John
/Contacts/Index/Neutral?page=Peter%20Piper
/Contacts/Index/Neutral?page=Mary

如何在每个链接中搜索 = 字符后的单词并将它们存储在数组中?

最佳答案

使用 Uri Class有了它 Query property

Uri baseUri = new Uri ("http://www.contoso.com/");
Uri myUri = new Uri (baseUri, "catalog/shownew.htm?date=today");

Console.WriteLine (myUri.Query); //outputs "?date=today"

关于c# - 在网页链接中搜索模式并将结果存储到数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16906316/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com