buckroe2
02-26-2007, 12:21 AM
How do I use the / as a Delimiter in the split function?
since the / is used as a start and end of the delimiter field.
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.
since the / is used as a start and end of the delimiter field.
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.