while(my $line=<$data>)
{
chomp $line;
my @fields = split ",",$line;
my $type = $fields[2];
if($type eq "CHILD")
{
next;
}
# some code
}
我正在尝试跳过第三列值为 CHILD 的行。但我无法这样做。我正在从 .csv 文件中读取数据。