Help for this page

Select Code to Download


  1. or download this
    for ($status) {
        s/P|F|C|D|I/Posted/g;
    ...
        s/S/Save/g;
        s/X/Canceled/g;
    }
    
  2. or download this
    my %subst={ A => 'Accepted',
                N => 'New',
    ...
                X => 'Canceled' };
    $subst{$_}='Posted' for qw/P F C D I/;
    $status =~ s/[A-Z]/$subst{$&}||$&/ge;