试试:
string test = "中国,美国,日本";
test = test.Contains("美国") ? test.Replace("美国", "<div style=\"color:Red\">美国<div>") : test;
test即为替换后字符串
string test="中国,美国,日本";
Response.Write(test.Replace("美国", "<span style=\"color:Red\">美国</span>"));
测试通过!!!
DIV是块级元素,会换行。建议使用 span 标签
楼上正解。