in reply to Re^2: Converting a Text file to XML
in thread Converting a Text file to XML
That's a regex, expressed on multiple lines (thanks to the "x" modifier at the end), where the first line captures everythingmy ($bibData, $quote, $primary, $sec) = / ^([^"]* "[^"]+"[^"]*) ([^\@]+) \@([^%]+) \%(.*) /x;
To get the date as a separate item, you just need to divide up the match a little differently, like this:
Note how the first capture changed: it now ends with .*? to do a "non-greedy" match of any character until the next capture match is found, which is the one I added to look for 4 digits followed by a literal period and whitespace (updated to require at least one whitespace character). Then we also have to add a $date variable to the list of assignments, as well as a the $xml->dataElement() call to include the $date value in the output.my ($bibData, $date, $quote, $primary, $sec) = / ^([^"]* "[^"]+".*?) (\d{4})\.\s+ ([^\@]+) \@([^%]+) \%(.*) /x; $xml->startTag('entry'); $xml->dataElement(bib => $bibData); $xml->dataElement(date => $date); $xml->dataElement(quote => $quote); $xml->dataElement(primary => $primary); $xml->dataElement(sec => $sec); $xml->endTag();
Bear in mind that if your input ever includes a line of text like this, the method above will do the wrong thing:
That could be "fixed" by making the regex match more explicit -- e.g. looking for any of the 12 month abbreviations before the 4-digit year -- but then some entries might lack a month, or the month will be unabbreviated or misspelled..."Big Brother." Review of Orwell's Novel 1984. Nov. 2011. "Tough sit +uation." @tricky %unparsable.
Any attempt to impose structure like this on plain text has a non-zero probability of failing, because it's impossible to anticipate all the unexpected variations that eventually show up in (human-authored) plain text.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Converting a Text file to XML
by monk8148n038 (Initiate) on Nov 17, 2011 at 19:52 UTC | |
by graff (Chancellor) on Nov 18, 2011 at 03:07 UTC |