BeautifulSoup and ASP.NET/C#

前端 未结 3 1631
臣服心动
臣服心动 2021-02-05 20:56

Has anyone integrated BeautifulSoup with ASP.NET/C# (possibly using IronPython or otherwise)? Is there a BeautifulSoup alternative or a port that works nicely with ASP.NET/C#

3条回答
  •  孤街浪徒
    2021-02-05 21:13

    Html Agility Pack is a similar project, but for C# and .NET


    EDIT:

    To extract all readable text:

    document.DocumentNode.InnerText
    

    Note that this will return the text content of

提交回复
热议问题