日期:2014-05-17 浏览次数:20500 次
string s = "你好,感情的问题是需要有感情的人采用有感情的方式来处理的。"; Regex regex = new Regex("(?s)感情"); string r = regex.Replace(s, "(替换后的字符串)", 1); Response.Write(r);
------解决方案--------------------
string sContent = sRs["Content"].ToString(); int index = sContent.IndexOf("爱情"); sContent = sContent.Remove(index,"爱情".Length).Insert(index, "<a href='http://www.sgw520.com/aqwz.aspx'>爱情</a>");
------解决方案--------------------