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