搜索关键字变颜色?
string Rekeyword = "<span class=\"c_f25c00 bold\">" + Keyword + "</span>";string stdname = cleanStr(stands.StdEnName, Keyword, Rekeyword);
_standsname.Text = stdname;
//字符串替换,str:内容,keyword:被替换的文字, Rekeyword:替换的文字
public string cleanStr(string str, string keyword, string Rekeyword)
{
StringBuilder bs = new StringBuilder(str);
//bs = bs.Replace("<", "<");
//bs = bs.Replace(">", ">");
bs = bs.Replace(keyword, Rekeyword);
return bs.ToString();
}
din iso 965 搜索这个 颜色 都没有变的
搜索965 颜色就有了 为什么呢 ?错哪里了?