B4J Question How can I parse HTML code with unlimited nodes with unlimited child nodes to a treeview? [solved] - Mashiane    Jan 11, 2018   (1 reaction) Hi there
I need some help parsing HTML code to a tree. The main point is getting the structure and..., Array(True))
'parse the Html page and create a new xml document.
tid.Parse(File... B4A Library [B4X] MiniHtmlParser - simple html parser implemented with B4X - Erel    Feb 6, 2025   (40 reactions) MiniHtmlParser is a cross platform class that parses html strings and creates a tree... html pages are not 100% valid. The parser tries to handle a few cases, far from browsers which can handle many common html problems.
The example demonstrates how to use the parser.
It parses... B4J Question parsing holidays, MiniHtmlParser - Erel (first post)    Sep 18, 2025   (3 reactions) Step 1:
To debug change code to:
For Each td As HtmlNode In tds
HtmlParser.PrintNode(td)
Next
Step 2:
For i = 0 To trs.Size -1
Dim tds As List = HtmlParser.FindDirectNodes(trs.Get(i), "td", Null)
For Each td As HtmlNode In tds
Dim TextNode As HtmlNode
Dim a As HtmlNode = HtmlParser.FindNode(td, "a", Null... B4J Question Parsing HTML Tables - Erel (first post)    Apr 12, 2020 What is the output that you get from jTidy?... B4J Tutorial [Server] Online Json Tree Example - Erel    Jul 6, 2023   (4 reactions) /jsontree-tool-to-help-with-json-parsing-b4a-b4j.35963/ http://www.b4x.com/basic4android/images/SS-2014-03-20_11.43.42.png You can try it online: https://b4x.com:51041/json/index.html The server parses the JSON string and returns the tree representation and also the B4A / B4J code you need in order to parse it. The code is similar to the desktop solution code. The main difference is that the tree is built with standard HTML lists, so instead of adding the elements to a real TreeView we need to... B4A Tutorial [B4X] [B4XPages] Pleroma / Mastodon Client - Erel    Feb 24, 2021   (25 reactions) the maximum allowed size.
The html from the feed is parsed using MiniHtmlParser class. The output.... Implemented as a library.
TextUtils - Converts the parsed html data to BBCode.
PleromaFeed - Downloads and....
HtmlToRuns - Converts the parsed html tree to text runs for BCTextEngine.
This project depends on several... B4J Question How to Parse HTML file - rwblinn (first post)    Oct 13, 2016   (2 reactions) Hi,
thought about converting the content to a table, then parse to xml then build a map with fields.
See attached try using jTidy with output.
Note: Corrected a typo spotted in the source. Attached... B4J Library [B4X] Xml2Map - Simple way to parse XML documents - Erel    Jul 16, 2023   (51 reactions)   tags: xml, Xml2Map, Erel Nobody likes to parse XML. Parsing JSON is simple and fun. Parsing XML is tedious and boring. That is the reason behind the Xml2Map class. It internally parses the XML document and returns a Map with the parsed data. It is similar to parsing JSON. Tip: You can use this tool to help you with parsing JSON: https://b4x.com:51041/json/index.html So instead of the code explained in the old tutorial: https://www.b4x.com/android/forum/threads/xml-parsing-with-the-xmlsax-library.6866/#content We... Other JsonTree - Tool to help with JSON parsing (B4A / B4J) - Erel    Apr 24, 2022   (43 reactions)   tags: JsonTree, Online http://www.b4x.com/basic4android/images/SS-2013-12-23_10.11.49.png JsonTree is a tool that helps developers to parse and understand JSON strings. It shows the data structure in a TreeView and it also prints the code (B4J / B4A) required in order to extract the data from the string. Note... is available here: http://basic4ppc.com:51042/json/index.html The source code is attached. Updated project: https://www.b4x.com/android/forum/threads/jsontree-tool-to-help-with-json-parsing-updated-as-23-4... B4J Code Snippet b4j Get Battery Info - jkhazraji    Feb 6, 2026   (8 reactions) As String = File.ReadString(htmlFilePath, "") ParseBatteryData(html...") ParseBatteryData(html) Else Log...") ParseBatteryData(html) Else xui.MsgboxAsync("Failed to...) End If End Sub Sub ParseBatteryData(html As String) Try ''''''... Manufacturer: " & ParseBatteryManufacturer(html)) Log("Serial Number:"... Page: 1   2   3   4   5   6   7   |