问题描述
- c#正则表达式 <img src>中的src 3个字母 替换成xxx
-
请大神帮忙!用c#正则表达式 把字符串中所有img标签的src3个字母替换成xxx
如
中的src 3个字母 替换成xxx
解决方案
直接写好正则,然后替换就好了啊。。
解决方案二:
string result=Regex.Replace(yourHtml,@"(<img src>)","<img xxx>");
解决方案三:
string html="321321321ddddd321dasdsadad";
中的src 3字母替换成xxx
就是把所有的img标签中的img替换掉
时间: 2024-10-28 22:57:22