in reply to Building an XML File from text

The main problem I see here is carving a regexp that will reliably catch dates. The rest looks OK.

For fun here is how I would write it with... XML::Twig (surprise surprise! ;--). Note that it is quite easier to mark the first think to mark (dates here) than the following ones. I should probably add an option to ignore some tags (John M Dlugosz suggested this). Also if you want to use XML::DOM you can use XML::DOM::Twig, which implements a lot of XML::Twig methods over XML::DOM, and just cut'n paste the mark method from XML::Twig.

#!/bin/perl -w use strict; use XML::Twig; # create the regexp for date, this should be improved my $month = qr/(?:(?:Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)\ +.?)/; my $day = qr/(?:(?:[0-2]?[0-9]|30|31)(?:st|nd|th)?)/; my $year = qr/(?:,?\s*\d+)?/; my $date= qr/($month $day$year)/; # this could probably be improved too! my $number= qr/(\d{2,})/; while( <DATA>) { chomp; # create the un-tagged XML my $t= XML::Twig->new(); # XML::Parser::Expat:::xml_escape just replaces & by &amp;, # > by &lt; etc... $t->parse( "<mytxt>". XML::Parser::Expat:::xml_escape( 1, $_) +. "</mytxt>"); # mark the dates $t->root->mark( $date, 'date'); # mark the numbers, foreach my $elt ($t->descendants( '#PCDATA')) { #skip if in date next if( $elt->in_context( 'date')); $elt->mark( $number, 'number'); } # output $t->print; print "\n"; } __DATA__ On Oct. 21, the Dow Jones rose to 10043 points On May 1st 2001, 12 people were working in France

Update: cacharbe is right, the text is probably not "XML-safe", so I added the XML escape when parsing $_.