How do I use the / as a Delimiter in the split function? This is the code now:
($url1, $url2, $url3) = split (/\./,$Image_Upload_4);
This is what I want to be able to split up the url: ($url1, $url2, $url3) = split (/\/./,$Image_Upload_4);
I have tried to put the / in quotes but that did'nt work. Thanks for any help.