提取字符串中的图像 URL(RSS 与 Syndicationfeed) [英] Extract image URL in a string (RSS with syndicationfeed)

查看:57
本文介绍了提取字符串中的图像 URL(RSS 与 Syndicationfeed)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有这个:

<img src="http://MyUrl.JPG.jpg" width="180" ...

我需要这个:

http://MyUrl.JPG.jpg

谢谢

推荐答案

使用正则表达式完成解决方案:

Complete solution with regex :

string source ="<img src=\"http://MyUrl.JPG.jpg\"";
var reg = new Regex("src=(?:\"|\')?(?<imgSrc>[^>]*[^/].(?:jpg|bmp|gif|png))(?:\"|\')?");
var match=reg.Match(source);
if(match.Success)
{
  var encod = match.Groups["imgSrc"].Value;
}

这篇关于提取字符串中的图像 URL(RSS 与 Syndicationfeed)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆