4

我在数据库中有一个始终有标签的字段。还有很多文字..

例如:

Hey there.. whats up?
<img src="http://cdn.theatlantic.com/static/infocus/ngpc112812/s_n01_nursingm.jpg" alt="" />
.. and this is my photo!..

我只需要得到

源代码

我试过了 :

public string LinkPicCorrect(string path)
{
    //string input = "[img]http://imagesource.com[/img]";
    string pattern = @"\<img>([^\]]+)\\/>";
    string result = Regex.Replace(path, pattern, m =>
    {
        var url = m.Groups[1].Value;
        // do something with url here
        // return the replace value
        return @"<img src=""" + url + @""" border=""0"" />";
    },
        RegexOptions.IgnoreCase);

    result = "<img src='" + result + "'/>";

    return result;
}

但我有一个解析错误:

异常详细信息:System.ArgumentException:解析“\([^]]+)\/>” - 引用未定义的组名 img。

不知道我的代码是否是正确的路径...

4

2 回答 2

15

这个问题已经在这里问过了。

string matchString = Regex.Match(original_text, "<img.+?src=[\"'](.+?)[\"'].+?>", RegexOptions.IgnoreCase).Groups[1].Value;
于 2013-08-20T08:41:28.463 回答
1

你可以试试这个正则表达式模式:-

string pattern= Regex.Match(path, "<img.+?src=[\"'](.+?)[\"'].+?>", RegexOptions.IgnoreCase).Groups[1].Value;
于 2013-08-20T08:36:47.050 回答