.net 伪原创代码 同义词替换

 

做了2天 ,查了N多资料,终于做出来的,放在后台,再发文章 直接复制粘贴过来,就会把文章中的词用我无敌的17000同义词库进行一次替换,这里采用了access数据库,百度,google基本就认不出来了,做到真正的伪原创 !

 明天做采集,采集后自动替换的!

public string Dealword(string cnt)//伪原创函数,tao2581 zhentou.net { string temp=cnt; // temp="test"; //创建数据库连接 OleDbConnection aConnection = new OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0;Data Source="+System.Web.HttpContext.Current.Server.MapPath("Tyc.mdb")); //创建command对象并保存sql查询语句 OleDbCommand aCommand = new OleDbCommand("select * from tb ", aConnection); aConnection.Open(); //创建datareader OleDbDataReader aReader = aCommand.ExecuteReader(); //循环遍历数据库 while(aReader.Read()) { temp= Regex.Replace(temp,aReader["tid1"].ToString(),aReader["tid2"].ToString()); } aReader.Close(); //关闭连接,这很重要 aConnection.Close(); return temp; }

 

 

你可能感兴趣的:(.net 伪原创代码 同义词替换)