日期:2014-05-17 浏览次数:20451 次
public string SqlFilter(string InText)
{
string word = "and
------解决方案--------------------
aaa
------解决方案--------------------
or
------解决方案--------------------
ggf";//过滤条件自己写
------解决方案--------------------
为分隔符
if (InText == null)
return "";
foreach (string str_t in word.Split('
------解决方案--------------------
'))
{
InText.Replace(str_t,"")
}
return InText;
}