http://www.perlmonks.org?node_id=152908


in reply to Re: (FoxUni) Re(3): XML parsing
in thread XML parsing

You have my sympathy. Since you are counting (or hoping) on the file format to not change, and not treating the data as XML (as suggested by your code above), you could improve it a little bit.

Assuming that you just want the number between the FILE_SIZE tags, you can do something like:

open my $fh, "<$ack_filename" or die "open error: $!"; my $file_size; while (<$fh>) { chomp; if (m|<file_size>([^<]*)</file_size>|i) { $file_size = $1; last; } } $fh->close; print $file_size;
This avoids running an external command and does not require the value to start at on offset of 13 in the second line from last. Even though it is more flexible, it would not be the right approach to parse XML data, but in your difficult situation I guess you can't do much better.

Then again, if the people you work with are so stupid and stubborn, maybe they deserve such code or worse.

Good luck getting out of there.

/prakash