in reply to Re: Parsing pseudo XML files
in thread Parsing pseudo XML files

It'd probably be more efficient to write this
$record{$_} =~ s/<.*?>//g; # remove start tag
as this:
$record{$_} =~ s/<[^>]+>//g;
as [^>] will match anything but a '>' (this way it doesn't have to backtrack)

[ ar0n -- want job (boston) ]