我获取当前页面上的所有链接,然后我查找了我需要的链接,然后我想获得此链接的锚点(#34的开放和结束标记之间的文本;#34;)。 我尝试使用" obj.GetAttribute(" innerText")",但它返回一个空字符串。
WebClient client = new WebClient();
string htmlCode = client.DownloadString("http://mysite1.com");
CQ cq = CQ.Create(htmlCode);
foreach (IDomObject obj in cq.Find("a")){
string href = obj.GetAttribute("href");
if (href.IndexOf("mysite2.com") != -1){
//get the anchor of this link
}
}
答案 0 :(得分:0)
最后解决它。
using CsQuery;
CQ cq = CQ.Create(htmlCode);
foreach (IDomObject obj in cq.Find("a")){
string linkAnchor = obj.InnerHTML;
}
但俄语文本存在问题。在某些情况下(并非总是)俄语文本作为unicode字符代码读取。例如,所有俄罗斯人都是这样的"&#1013"。 所以我写了一个函数来解码俄语字符中俄语字符的表示。
private string DecodeFromUTFCode(string input){
input = input.Replace("&#", "");
StringBuilder decodedAnchor = new StringBuilder();
StringBuilder currentUnicodeNum = new StringBuilder();
bool isInNumber = false;
for (int i = 0; i <= input.Length - 1; i++){
if (Char.IsDigit(input[i])){
isInNumber = true;
}else{
isInNumber = false;
if (input[i] != ';') decodedAnchor.Append(input[i]);
}
if (isInNumber){
currentUnicodeNum.Append(input[i]);
}
if ((input[i] == ';') || (i == input.Length - 1)){
string decoded = char.ConvertFromUtf32(int.Parse(currentUnicodeNum.ToString()));
decodedAnchor.Append(decoded);
currentUnicodeNum.Clear();
}
}
return decodedAnchor.ToString();
}