Hello Tony,
after playing with WebParserCore, it seems there is a limit of 99 RegEx matches.(?)
In my opinion that is very restrictive and too low.
I created a football widget, with results and ranking table.
Example: English premier league (20 teams)
99 RegEx matches divided by 20 = 4.95 => 4 RegEx matches per team.
"Ranking position" and "team name" already take 2 RegEx matches, so there are only 2 RegEx matches left.
Usualy you will have
at least these basic informations:
1. position
2. team name
3. matches played
4. won
5. draw
6. lost
7. points
8. goals
9. goal difference
9 x 20 = 180 RegEx matches (for basic infos)
I also wanted to grab a betting table (35 members/lines). Same trouble... because then you only can get 2 RegEx matches per member (position, name), so neither the points for the current day nor the points overall

Would it be possible to increase this limit to at least 256 (or even better 1024)?
Is there any other solution?
(In the first step I was thinking to grab line by line and to use the substitute function for replacing HTML-tags with tabulators but I could not manage that either)
And another short question:
How can I start a widget from inside a widget?
(Button in "Widget_A" should start "Widget_D" at position x,y on the screen)