本文整理汇总了C#中BaseLib.GlobusHttpHelper.GetDataTag方法的典型用法代码示例。如果您正苦于以下问题:C# GlobusHttpHelper.GetDataTag方法的具体用法?C# GlobusHttpHelper.GetDataTag怎么用?C# GlobusHttpHelper.GetDataTag使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类BaseLib.GlobusHttpHelper
的用法示例。
在下文中一共展示了GlobusHttpHelper.GetDataTag方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: CrawlingLinkedInPage
//.........这里部分代码省略.........
comp = (start1.Substring(0, endIndex1).Replace("\"", string.Empty).Replace("companyName", string.Empty).Replace(":", string.Empty).Replace(";", string.Empty).Replace("\\u002d", "-").Replace("name:", string.Empty));
}
catch { }
if (titlecurrent == string.Empty)
{
titlecurrent = exp;
}
if (companycurrent == string.Empty)
{
companycurrent = comp;
}
ListExperince.Add(exp + ":" + comp);
}
}
catch { }
}
}
else
{
array = Regex.Split(stringSource, "<header>");
foreach (string tempItem in array)
{
try
{
if (!tempItem.Contains("<!DOCTYPE html>"))
{
List<string> lstExp = objChilkat.GetDataTag(tempItem, "h4");
List<string> lstComp = objChilkat.GetDataTag(tempItem, "h5");
if (lstExp.Count > 0)
{
exp = lstExp[0];
}
if (lstComp.Count > 0)
{
comp = lstComp[0];
if (string.IsNullOrEmpty(comp))
{
comp = lstComp[1];
}
}
if (titlecurrent == string.Empty)
{
titlecurrent = lstExp[0];
}
if (companycurrent == string.Empty)
{
companycurrent = lstComp[0];
}
ListExperince.Add(exp + ":" + comp);
}
}
catch { }
}
}
foreach (var item in ListExperince)