in reply to Reading b/w tags

hi gzayzay,

try to replace your 'while' loop with this one:

while (<XFILE>) { chomp; print (LIST "$_","\n") if /\<(name|keywords|description|results)\>/ .. /\<\/$1\>/; }

Enjoy,
Mickey

Replies are listed 'Best First'.
Re^2: Reading b/w tags
by Anonymous Monk on Mar 21, 2006 at 13:06 UTC
    Thanks a lot Mickey.

    Edman