0

我正在尝试从字符串中提取 URL 并稍后使用它来创建超链接。我希望能够执行以下操作: - 确定输入字符串是否包含 URL - 从输入字符串中删除 URL - 将提取的 URL 存储在变量中以备后用

谁能帮我这个?

4

2 回答 2

3

这是识别流行格式的 URL 的绝佳解决方案,例如:

  • www.google.com
  • http://www.google.com
  • 邮寄地址:somebody@google.com
  • 某人@google.com
  • www.url-with-querystring.com/?url=has-querystring

使用的正则表达式是:

/((([A-Za-z]{3,9}:(?:\/\/)?)(?:[-;:&=\+\$,\w]+@)?[A-Za-z0-9.-]+|(?:www.|[-;:&=\+\$,\w]+@)[A-Za-z0-9.-]+)((?:\/[\+~%\/.\w-_]*)?\??(?:[-\+=&;%@.\w_]*)#?(?:[\w]*))?)/

但是,我建议您访问http://blog.mattheworiordan.com/post/13174566389/url-regular-expression-for-links-with-or-without-the查看工作示例。

于 2013-03-20T18:37:34.433 回答
0

用您的输入替换输入

        string input = string.Empty;
        var matches = Regex.Matches(input,
                      @"/((([A-Za-z]{3,9}:(?:\/\/)?)(?:[-;:&=\+\$,\w]+@)?[A-Za-z0-9.-]+|(?:www.|[-;:&=\+\$,\w]+@)[A-Za-z0-9.-]+)((?:\/[\+~%\/.\w-_]*)?\??(?:[-\+=&;%@.\w_]*)#?(?:[.\!\/\\w]*))?)/");
        List<string> urlList = (matches.Cast<object>().Select(match => match.ToString())).ToList();
于 2013-03-20T18:47:36.693 回答