Help for this page

Select Code to Download


  1. or download this
    exists $uat_tid{$key}?print "$uat_tid{$key}\t":print "No UAT trans id\
    +t";
    
  2. or download this
    print exists $uat_tid{$key} ? $uat_tid{$key} : 'No UAT trans id', "\t"
    +;
    
  3. or download this
    exists $uat->{$key}{$inrole}?print "$uat->{$key}{$inrole}":for my $rol
    +e_key ( keys %{$uat->{$key} } )
        { print $role_key if $uat->{$key}{$role_key} eq $value};
    
  4. or download this
    if (exists $uat->{$key}{$inrole}) {
        print $uat->{$key}{$inrole};
    ...
            print $role_key if $uat->{$key}{$role_key} eq $value;
        }
    }