thank you. I am definitely going through them(tutorials)
Here is my working code to date,
I plan to add one sub to do more with the data but this is great
that it's working this far. But I am gonna go back to tutorials to read more on everything that I am lacking to
program .. but you guys are great!!
#!/usr/bin/perl -w
use strict;
use diagnostics;
my $ncb = $/;
my $cbn = $";
$/ = "\n\n";
$" = "\n";
my $yahoo = shift @ARGV;
open FH, "$yahoo" or die "can't open $!";
my $callid;
my $sipm;
my %data1 = ();
my $count = 0;
my $size = 15;
while (<FH>) {
chomp;
if (m/###/) {
next;
}
unless (m{(?:^\bSIP\/2\.0 \b)?(\d\d\d|^[A-Z]{3,6} ).*(Call-ID:
+[\S]{25,80})[^ ]+: .*}s) {
$count++;
next;
}
($sipm,$callid) = ($1,$2);
push (@{$data1{$callid}}, $sipm);
}
close FH;
$/ = $ncb;
$" = $cbn;
print "There were $count which could not detect\n";
HANA: foreach $callid (sort keys %data1) {
my @fields = @{$data1{$callid}};
my @fields1 = @fields;
@fields1 = map { s/\s//g; $_ } @fields1;
if ("$size" > ($#fields1 + 1)) {
next HANA;
} else {
print @fields1;
}
print "\n";
}
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.