Johnno wrote:
> 
> I have tring to use the split cmd to split words after the /
> 
> @Site_Info = split(///,$Site_Info);
> 
> for some reason is does not like the extra / how can i get this to work??
> for should a change the / to something else??


my @Site_Info = split /\//, $Site_Info;

-- 
  ,-/-  __      _  _         $Bill Luebkert   ICQ=14439852
 (_/   /  )    // //       DBE Collectibles   http://www.wgn.net/~dbe/
  / ) /--<  o // //      Mailto:[EMAIL PROTECTED]   http://dbecoll.webjump.com/
-/-' /___/_<_</_</_    http://www.freeyellow.com/members/dbecoll/
_______________________________________________
Perl-Win32-Web mailing list
[EMAIL PROTECTED]
http://listserv.ActiveState.com/mailman/listinfo/perl-win32-web

Reply via email to