in reply to parsing xml
open FH, "test.xml"; while (<FH>) { next if ($_ =~ /\<INFO/ig); print $_; } [download]