- or download this
open(FILE, $file) or die "Cannot open $file: $!\n";
while(<FILE>) {
chomp;($creg, $cname, $attribs) = split(/,/);
}
close(FILE);
- or download this
UNIQUE ID, NAME, ATTRIBS
UNIQUE ID, NAME, ATTRIBS
- or download this
foreach $line(@file) {
chomp;($creg, $cname, $attribs) = split(/,/);
...
$object->creg($creg);
...
}