in reply to Split on regex, don't match partial regex

URI is URI

use CGI; my $q = CGI->new(q{itag=44&url=...AND SO ON }); print $_, ' = ', $q->param($_),"\n" for qw/ itag url /; __END__ itag = 44 url = ...AND SO ON

Replies are listed 'Best First'.
Re^2: Split on regex, don't match partial regex
by aldo (Initiate) on Sep 28, 2012 at 08:20 UTC

    Hi the ..AND SO ON was just me expressing that the itag url pair repeats multiple times separated by commas, sorry for not explaining that properly

      Hi the ..AND SO ON was just me expressing that the itag url pair repeats multiple times separated by commas, sorry for not explaining that properly

      Doesn't much matter, CGI handles repeaters