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