Help for this page

Select Code to Download


  1. or download this
    while (<DATA>) {
        my ($name,$type,$value) = $_ =~ /^blah::(\w+)\s+(\w+):(\d+)/;
    ...
    __DATA__
    blah::status integer:22
    blah::max integer:5
    
  2. or download this
    my %table;
    
    ...
     
        $table{$name} = $value if $name and $value;
    }