oh yeah, trystring resultStr = "";
Match m = Regex.Match(yourStr, @"<img\s*(?<content>[^>]*)\s*/>", RegexOptions.IgnoreCase);
if(m.Success)
{
     resultStr = m.Groups["content"].Value.Trim();
}