in reply to Re: Parsing pseudo XML files
in thread Parsing pseudo XML files
as this:$record{$_} =~ s/<.*?>//g; # remove start tag
as [^>] will match anything but a '>' (this way it doesn't have to backtrack)$record{$_} =~ s/<[^>]+>//g;
[ ar0n -- want job (boston) ]
|
|---|