T
Ted Flethuseo
Hi everyone,
I need to build 3 relational tables from an xml text. In this tables, I
need to keep track of words that have the <emph> and <bold> tags in them
along with the
word mentioned and its count in the <p> tag. This is easier to
illustrate with an example:
I need to take this text:
<p> My name is <strong>Ted</strong>, and I like <emph>coffee</emph>.
<strong>Ted</strong> does not like tea. </p>
<p> I have a brother who likes <emph>tea</emph> but does not like
<emph>coffee</emph> </p>
To 3 normalized tables like this:
...p_table...
p_id desc
1 My name is....
2 I have a ....
...p_to_emph_table...
p_id e_id count
1 2 1
2 1 1
2 2 1
...emph_table...
e_id emph_word
1 Tea
2 Coffee
I am not sure what would be the best approach to parse this xml with
ruby or what tool
could help me do this efficiently?
Any ideas appreciated,
Ted.
I need to build 3 relational tables from an xml text. In this tables, I
need to keep track of words that have the <emph> and <bold> tags in them
along with the
word mentioned and its count in the <p> tag. This is easier to
illustrate with an example:
I need to take this text:
<p> My name is <strong>Ted</strong>, and I like <emph>coffee</emph>.
<strong>Ted</strong> does not like tea. </p>
<p> I have a brother who likes <emph>tea</emph> but does not like
<emph>coffee</emph> </p>
To 3 normalized tables like this:
...p_table...
p_id desc
1 My name is....
2 I have a ....
...p_to_emph_table...
p_id e_id count
1 2 1
2 1 1
2 2 1
...emph_table...
e_id emph_word
1 Tea
2 Coffee
I am not sure what would be the best approach to parse this xml with
ruby or what tool
could help me do this efficiently?
Any ideas appreciated,
Ted.