Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
       split m{(?<!:)\s+}, $s;
    
    print Data::Dumper->Dumpxs( [ \ %extract ], [ q{*extract} ] );
    
  2. or download this
    %extract = (
                 'ABC' => '123',
    ...
                 'aaa' => 'ZZZ',
                 'xyz' => '100'
               );