HI
I am trying to develop a table mapper to parse a HTML table. The table i am working on should have broken into seperate tables, but to make my work challenging the table is just rows of info.
The table should be
IGMP property 1
IGMP property 2
IGMP interface1 name
IGMP interface1 prop 1
IGMP interface1 prop 2
IGMP interface1 group
IGMP interface1 group1 prop 1
IGMP interface1 group1 prop 2
IGMP interface2 name
IGMP interface2 prop 1
IGMP interface2 prop 2
IGMP stat1
IGMP stat2
(Please see the file attached for the real table output)
Using the table mapper and playing around with the table markers (Start & end) I am able to break the info multiple tables. But i have few issues where i can take some help/suggestions
1. How can i make a column value in a table header a key?
In the above example "IGMP interface1 name"(Row 3) i would like to use the name as a key to fetch the values from interface table
2. How can i include the value in a table header part of my token
When i declare a row as a table header the value stored in the column is no more tied to a token
3. How can i combine multiple keys to create a query to get values from the table?
In the above example i would like to query something like table1->name1->option1
Please see the attached table map file for what i am really trying to solve
Thanks