10.用正则表达式 提取网页中的网站链接

前端之家收集整理的这篇文章主要介绍了10.用正则表达式 提取网页中的网站链接前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

  using System;

  using System.Collections.Generic;

  using System.Linq;

  using System.Text;

  using System.IO;

  using System.Text.RegularExpressions;

  namespace q提取网页中的网站链接

  {

  class Program

  {

  static void Main(string[] args)

  {

  string str = File.ReadAllText("1.htm",Encoding.UTF8);

  MatchCollection ms = Regex.Matches(str,@"""(http://.+?)""");

  if (ms.Count!=0)

  {

  for (int i = 0; i < ms.Count;i++ )

  {

  if (ms[i].Success)

  {

  Console.WriteLine(ms[i].Groups[1].Value);

  }

  }

  }

  Console.ReadKey();

  }

  }

  }

原文链接:https://www.f2er.com/regex/361003.html

猜你在找的正则表达式相关文章