Help for this page

Select Code to Download


  1. or download this
        $input = q|http://abc.org,http://de,f.org,https://ghi.org|;
    
  2. or download this
        @captures = (
            'http://abc.org',
            'http://de,f.org',
            'https://ghi.org',
        );
    
  3. or download this
        @captures = (
            'http://abc.org',
            'http://de,f.org',
        );
    
  4. or download this
    use strict;
    use warnings;
    ...
      }
      return \@captures;
    }