Help for this page

Select Code to Download


  1. or download this
    my $data = '<%def .errors>
    missing_name: You must provide your name.
    ...
    my %errors = $errors =~ m{(\w+):\s*(.*?)\n}g;
    
    print Dumper \%errors;
    
  2. or download this
    $VAR1 = {
              'missing_email' => 'You must provide your email address.',
              'missing_name' => 'You must provide your name.'
            };