in reply to Re: Processing a multiple="multiple" <select>in thread Processing a multiple="multiple" <select>
Since you brought it up, 'sed' style matching is too heavy. All you want to do is detect the situation of multiple responses.
if ($payload =~ /+/) { # process as list } [download]