C 獲得搜尋引擎 關鍵字

2021-08-30 12:06:29 字數 1971 閱讀 4269

using system;

using system.collections;

using system.configuration;

using system.data;

using system.linq;

using system.web;

using system.web.security;

using system.web.ui;

using system.web.ui.htmlcontrols;

using system.web.ui.webcontrols;

using system.web.ui.webcontrols.webparts;

using system.xml.linq;

using system.text.regularexpression_rs;

using system.text;

namespace counter.ui

//搜尋引擎特徵

private string _enginers = new string

,new string,

new string,

new string,

new string,

new string,

new string,

new string,

new string,

new string,

new string,

new string,

new string,

new string,

new string,

new string

};//搜尋引擎名稱

private string _enginename = "";

public string enginename

}//搜尋引擎編碼

private string _coding = "utf8";

public string coding

}//搜尋引擎關鍵字查詢引數名稱

private string _regexword = "";

public string regexword

}private string _regex = @"(";

//搜尋引擎關鍵字

//建立搜尋關鍵字正規表示式

public void engineregex(string mystring)}}

//得到搜尋引擎關鍵字

public string searchkey(string mystring)

else

}return mystring;

}//整句轉碼

public string getutf8string(string mystring)

return mystring;

}//單字gb2312轉utf8 url編碼

public string gb2312toutf8(string mystring)

;encoding gb = encoding.getencoding("gb2312");

encoding u8 = encoding.utf8;

mybyte = encoding.convert(gb, u8, mybyte);

char chars = new char[u8.getcharcount(mybyte, 0, mybyte.length)];

u8.getchars(mybyte, 0, mybyte.length, chars, 0);

return new string(chars);

}//判斷否為搜尋引擎爬蟲,並返回其型別

public string iscrawler(string systeminfo)

;foreach (string bot in botlist)

}return "null";}}

}

分析搜尋引擎關鍵字

根據中國網際網路資訊中心的第14次中國網際網路發展狀況的調查報告,截止到2004年6月30日,中國的上網使用者已達到8700萬,在使用者使用的各種網路服務中,搜尋引擎列第二位,其被使用的頻率僅次於電子郵件 1 這一資料顯示搜尋服務市場有巨大的潛在商業利益。從使用者的角度來說,使用者不管是在雅虎 新浪...

C 分析搜尋引擎url 得到搜尋關鍵字

using system using system.collections.generic using system.text using system.text.regularexpressions namespace util 搜尋引擎特徵 private string enginers new...

C 分析搜尋引擎url 得到搜尋關鍵字

using system using system.collections.generic using system.linq using system.text using system.text.regularexpressions using system.web namespace hbtu...