Help for this page

Select Code to Download


  1. or download this
    my $TEST_REC_FORMAT = get_msg_format [
       status => 'n  ',   #   0
    ...
    ];
    
    my %test_vals = parse_msg($TEST_REC_FORMAT, $rec);
    
  2. or download this
    my $TEST_REC_FORMAT = MessageFormat->new([
       status => 'n  ',   #   0
    ...
    ]);
    
    my %test_vals = $TEST_REC_FORMAT->parse($rec);