LWGShane Well-Known Member Licensed User Longtime User Nov 2, 2014 #1 Is it possible to get a HTML tag by it's ID via HTTPUtils? For example, I'm wanting to make a stats app for the following page: http://wiimmfi.de/mkw I'm unsure of how to parse HTML tags without IDs.
Is it possible to get a HTML tag by it's ID via HTTPUtils? For example, I'm wanting to make a stats app for the following page: http://wiimmfi.de/mkw I'm unsure of how to parse HTML tags without IDs.
Erel B4X founder Staff member Licensed User Longtime User Nov 2, 2014 #2 Make sure to use HttpUtils2 (not HttpUtils). After you download the page source you can convert it to XML with the JTidy library. Then you can parse it with one of the XML parsers. Upvote 0
Make sure to use HttpUtils2 (not HttpUtils). After you download the page source you can convert it to XML with the JTidy library. Then you can parse it with one of the XML parsers.
LWGShane Well-Known Member Licensed User Longtime User Nov 2, 2014 #3 Erel said: Make sure to use HttpUtils2 (not HttpUtils). After you download the page source you can convert it to XML with the JTidy library. Then you can parse it with one of the XML parsers. Click to expand... Oh, wow. You can actually do that? That's awesome! Upvote 0
Erel said: Make sure to use HttpUtils2 (not HttpUtils). After you download the page source you can convert it to XML with the JTidy library. Then you can parse it with one of the XML parsers. Click to expand... Oh, wow. You can actually do that? That's awesome!