使用C#从html页面重新获取javascript属性

时间:2015-09-11 13:45:29

标签: c# jquery windows-phone

我想知道是否有办法使用c#从网页获取javascript函数的特定属性,

这是我在网站上找到的功能:

(function($){
window.Ibles.pageContext = $.extend(window.Ibles.pageContext, {         
    numStepsByWordCount: 1,
    allSteps: true,
    ibleID: "EPAOKDUH8I455QP",
    ibleUrl: "/id/PVC-longbow/",
    ibleType: "Step by Step",
    ibleCategory: "outside",
    ibleChannel: "survival"
});
})(jQuery);

我需要获取ibleID属性。

之前的

1 个答案:

答案 0 :(得分:1)

您可以使用正则表达式轻松提取值:

var match = Regex.Match(content, "ibleID: \"(?<id>\\w+)\"");

if (match.Success)
{
    var id = match.Groups["id"].Value;
}
else 
{
    // id not found
}