为了账号安全,请及时绑定邮箱和手机立即绑定

我怎样才能将部分 url 与 c#

我怎样才能将部分 url 与 c#

C#
桃花长相依 2022-12-31 11:21:30
我有一个动态列表,如下几行https://www.example.com/*/post/https://www.example2.com/videos/*https://www.example3.com/photo/我如何匹配 C# 以下 url(返回 true)https://www.example.com/user123/post/http://www.example.com/user123/post/abchttps://www.example2.com/videos/1234https://www.example2.com/videos/1234/5678http://www.example2.com/videos/1234/5678http://example2.com/videos/1234/video.asp?id=1也许我可以使用 UriTemplate 但 url 有很多部分。他们没有静态格式。
查看完整描述

1 回答

?
吃鸡游戏

TA贡献1829条经验 获得超7个赞

试试这个使用正则表达式的方法:


static void Main(string[] args)

{

  var urls = new string[] { "https://www.example.com/*/post/", "https://www.example2.com/videos/*" };

  // here regex patterns are created: special characters are escaped and 

  // star, which means here "anything" is replaced by .+ which means "one or more of any charaters"

  var regexes = urls.Select(url => new Regex(url.Replace("/", @"\/").Replace(".", @"\.").Replace("*", ".+")));


  var toCheck = new string[]

  {

  "https://www.example.com/user123/post/",

  "http://www.example.com/user123/post/abc",

  "https://www.example2.com/videos/1234",

  "https://www.example2.com/videos/1234/5678",

  "http://www.example2.com/videos/1234/5678",

  "http://example2.com/videos/1234/video.asp?id=1"

  };


  var valid = toCheck.Where(url => regexes.Where(r => r.Match(url).Success).Any()).ToArray();

}


查看完整回答
反对 回复 2022-12-31
  • 1 回答
  • 0 关注
  • 66 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信