I am trying to parse word documents that contain job requisitions into XML.
The problem I'm having is the fields are not very standard.
For example, I'll get one job with the current format
----------------------------------------------------
JobID: 123
Title: .Net Developer
Description: blah blah blah
Mandatory Skills: blah blah blah
----------------------------------------------------
Desired XML Result:
123
.Net Developer
blah blah blah
blah blah blah
----------------------------------------------------
And then the next one might look like this
----------------------------------------------------
JobID: 222
Title: SharePoint Developer
Rate: $80/hr
Description: blah blah blah
blah blah blah
----------------------------------------------------
Desired XML Result:
222
SharePoint Developer
$80/hr
blah blah blah
blah blah blah
----------------------------------------------------
As you can see, each line that starts with a descriptor of the data is followed by a colon.
I need a way to create an XML tag for each descriptor and put its value inside.
Any ideas???