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

本文关键字:存储 结果 数组 模式 网页 链接 搜索 | 更新日期: 2023-09-27 18:16:35

我正在寻找帮助存储链接到一个数组,如果一个模式被发现。到目前为止,我已经设置了一个带有web浏览器的表单并加载了我的页面。

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

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

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

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

使用Uri类的Query属性

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"