vote up 1 vote down star
3

I want to parse a large XML file and I have two options: Perl or PHP. Being new to both languages what would be your suggestion about language of choice for parsing a large XML file?

And what modules are more appropriate for the task at hand?

flag

How large is large? – danieltalsky Oct 26 at 19:43
Around 15 to 25 mb – Rachel Oct 26 at 19:45
1  
What happened to "> 15 GB"? Convinced your boss that that was a bad idea? – Manni Oct 26 at 19:49
According to latest specification, it was mentioned that it would be around mentioned size. Thank you Manni for guiding and providing accurate advice. I really appreciate your efforts. – Rachel Oct 26 at 19:51
Good for you. Must be nice to have that one off your chest. – Manni Oct 26 at 19:54
show 1 more comment

4 Answers

vote up 6 vote down check

Use the language that you are most comfortable with.

If you decide to use Perl, please refer back to the "parsing XML using Perl"-questions you asked recently:

link|flag
1  
This is the only correct answer. Both languages have highly-developed XML parsing utilities, so which is "best" depends on other factors. – Ether Oct 26 at 19:43
vote up 4 vote down

XML is usually parsed in one of two modes: stream or DOM. DOM is convenient, but unsuitable for large files. XML::Twig from CPAN has mixed mode, which has advantages of both modes.

link|flag
vote up 0 vote down

Just off the cuff - I have no knowledge of the specific XML parsing capabilities of either language - I would say if it's parsing, go Perl. Perl's regular expression support is excellent and makes it the language of choice when there is parsing to be done. Your mileage may vary.

link|flag
4  
Regular expressions have little to do with parsing non-regular languages. – Svante Oct 26 at 19:41
Are you suggesting to parse XML with regular expressions? – Manni Oct 26 at 19:48
2  
And now Alcon has 2 problems... – DVK Oct 26 at 20:03
vote up 1 vote down

PHP has a built in function called simplexml which makes it very easy to handle XML files.

link|flag
5  
He says "large" and simple XML loads the whole stucture in memory... – danieltalsky Oct 26 at 19:40
Good thing nobody listened to Bill Gates about ram huh? – Patrick Oct 26 at 19:57
5  
Patrick, ever loaded 1Gig file into DOM in an interpreted language? I did. NOT pretty. – DVK Oct 26 at 20:02

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.