B4A Library [B4X] MiniHtmlParser - simple html parser implemented with B4X - Erel    Oct 20, 2020   (37 reactions) ℵ
- 0.91 - Fixes an issue with text after the last element. B4A Question Parse Html file - how to? - Erel (first post)    Jan 25, 2021   (1 reaction) MiniHtmlParser - simple html parser implemented with B4X B4J Question miniHtmlParser help - William Lancee (first post)    Jan 11, 2024   (3 reactions) Interesting project. See attached code and tested zip.
Sub Process_Globals
Private HtmlParser As MiniHtmlParser
End Sub
Sub AppStart (Args() As String)
HtmlParser.Initialize
Dim root As HtmlNode = HtmlParser.Parse(File.ReadString(File.DirAssets, "opera.html"))
Dim div As HtmlNode B4J Question MiniHTMLParser shows error message when no node text present - teddybear (first post)    May 13, 2024   (2 reactions) MiniHTMLParser is a b4xlib, you can fix it.
'Returns the text value from a node.
Public Sub GetTextFromNode (Node As HtmlNode, ChildIndex As Int) As String
Dim at As HtmlAttribute
If Node.Children.Size > 0 Then
Dim tn As HtmlNode = Node.Children.Get(ChildIndex)
at = tn.Attrib B4J Question SOLVED - MiniHtmlParser - Help - Erel (first post)    Sep 22, 2022   (2 reactions) An important tool for such tasks is the browser development console:
133928 B4A Question How to use parser multipart body - Erel (first post)    Mar 29, 2022 You can also use: MiniHtmlParser - simple html parser implemented with B4X B4A Question Missing library called PLMContent or PLMStatus - Erel (first post)    Mar 25, 2024   (1 reaction) You are missing this library: MiniHtmlParser - simple html parser implemented with B4X B4A Question web-component inside a web page with MiniHtmlParser - DonManfred (first post)    Jan 28, 2023   (2 reactions) probably the site is loading additional data with javascript and dynamically adding content.
You don´t get the full content when downloading the initial webpage which uses Javascript... B4A Question [Solved] How to use MiniHtmlParser to parse a html table ? - AnandGupta (first post)    Nov 13, 2020   (1 reaction) Perfect !
Checked both in B4J and B4A, works smooth. We are all grateful to you @Erel for MiniHtmlParser, which makes so easy parsing html tags.
Thanks a lot.
Regards,
Anand B4A Question Subscribe to library updates - Erel (first post)    Oct 20, 2020   (4 reactions) MiniHtmlParser
- 0.94 - New FindDirectNodes method. Returns a list with the direct child nodes that match the tag name and optionally the attribute.
New IsNodeMatches methods - tests whether the given node matches the tag name and optionally the attribute.
Example was updated. It was broken by the c Page: 1   2   3   4   5   6   7   Powered by ColBERT |