in reply to Re: Re: Re: Regular Expression Problem
in thread Regular Expression Problem

I got the solution for this problem
I encoded the "&" on the url like "%26".
After I coded this to do the translation
if($name=~/(.*)&(.*?)/) { $name=~s/(.*)&(.*?)/$1%26$2/; print $name; } else { print $name; }

Thank you for all your help!