Kirby_sarah wrote at Mon, 12 Aug 2002 23:28:44 +0200:

> line 344: $policyCount = split (/\t/, $violations{$vID});     

Another way to count the parts is

my $count = 1;
while ($violations{$vID} =~ /\t/g) { $count++ }


Greetings,
Janek


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to