c#正则表达式 <img src>中的src 3个字母 替换成xxx

请大神帮忙!用c#正则表达式 把字符串中所有img标签的src3个字母替换成xxx

中的src 3个字母 替换成xxx

直接写好正则,然后替换就好了啊。。

 string result=Regex.Replace(yourHtml,@"(<img src>)","<img xxx>");

string html="321321321ddddd321altdasdsadadalt";

中的src 3字母替换成xxx
就是把所有的img标签中的img替换掉