Help for this page

Select Code to Download


  1. or download this
    my $string;
    $string .= $thing->{employeeID}; 
    ...
    $string .=  "\t" ;
    $string .=  $thing->{physicalDeliveryOfficeName} ;
    $string .=  "\n";
    
  2. or download this
    my $string = join("\t",
        $thing->{employeeID},
    ...
        $thing->{o},
        $thing->{physicalDeliveryOfficeName},
    )."\n";
    
  3. or download this
    my $string = join("\t", @$thing{ qw(
        employeeID
    ...
        o
        physicalDeliveryOfficeName
    ) })."\n";