in reply to Re: need help with search and replace
in thread need help with search and replace

# Munge the current line into what we want $line =~ s!^http://!url$counter=http://!i; $line =~ s!&!item=!g;
I think this should be
# Munge the current line into what we want $line =~ s!^http://!url$counter=http://!i; $line =~ s!&!item$counter=!g;
Otherwise, great post