我有一个字符串:
string explanation= "Which of the following are associated with ependymitis " +
"<img id='id=47148;displayStyle=Simple;width=100;height=62;loop=False;' " +
"isMaintainAspectRatio=True "+
"src='../Admin/GetImage.ashx?id=240648' alt='Image4' width='100' height='62' " +
"href='../Admin/GetImage.ashx?id=240648'/><br />";
我想在<a></a>
标记之前添加<img>
标记。当解释中有许多<img>
个标签时,我们该怎么做呢?
答案 0 :(得分:0)
您可以使用String.Replace
方法:
explanation.Replace("<img", "<a></a><img");
或者,如果您只想替换<img>
标记的第一个出现(不确定我应该理解您的问题),请查看此thread。