Re: Help with my thought process...parsing a log

2006-01-13 Thread Robert Hicks
His suggestion works great! I just have to figure out the time diff part and then I am done. : ) Robert -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Help with my thought process...parsing a log

2006-01-12 Thread Robert Hicks
Thanks guys I will work on that. I love Perl. :) Robert -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Help with my thought process...parsing a log

2006-01-11 Thread Dr.Ruud
John Doe schreef: > while () { > my @fields=split /\s+/, $_; Or my @fields = split ''; or my @fields = split; > my $time_diff=diff(@{$table{$userno}}, $date, $time); Those $date and $time should be without DST-delta. -- Affijn, Ruud "Gewoon is een tijger." -- To unsubscribe,

Re: Help with my thought process...parsing a log

2006-01-11 Thread John Doe
Robert Hicks am Mittwoch, 11. Januar 2006 17.00: > "John Doe" <[EMAIL PROTECTED]> wrote in message > news:[EMAIL PROTECTED] > > > Robert Hicks am Dienstag, 10. Januar 2006 18.16: > > > I have an application log that shows the "time", "id" and "type" for a > > user > > > > logging in. A short except

Re: Help with my thought process...parsing a log

2006-01-11 Thread Robert Hicks
"John Doe" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Robert Hicks am Dienstag, 10. Januar 2006 18.16: > > I have an application log that shows the "time", "id" and "type" for a user > > logging in. A short except looks like this: > > > > 19/12/2005 07:28:37 User (guest) logging

Re: Help with my thought process...parsing a log

2006-01-11 Thread Robert Hicks
"John Doe" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Robert Hicks am Dienstag, 10. Januar 2006 18.16: > > I have an application log that shows the "time", "id" and "type" for a user > > logging in. A short except looks like this: > > > > 19/12/2005 07:28:37 User (guest) logging

Re: Help with my thought process...parsing a log

2006-01-10 Thread Dr.Ruud
Robert Hicks: > I have an application log that shows the "time", "id" and "type" for > a user logging in. A short except looks like this: > > 19/12/2005 07:28:37 User (guest) logging in from (LIMS-CIT) - > Assigned Userno (7045) > 19/12/2005 07:32:06 User (guest) logging in from (LIMS-CIT) - > A

Re: Help with my thought process...parsing a log

2006-01-10 Thread John Doe
Robert Hicks am Dienstag, 10. Januar 2006 18.16: > I have an application log that shows the "time", "id" and "type" for a user > logging in. A short except looks like this: > > 19/12/2005 07:28:37 User (guest) logging in from (LIMS-CIT) - Assigned > Userno (7045) > 19/12/2005 07:32:06 User (guest

Help with my thought process...parsing a log

2006-01-10 Thread Robert Hicks
I have an application log that shows the "time", "id" and "type" for a user logging in. A short except looks like this: 19/12/2005 07:28:37 User (guest) logging in from (LIMS-CIT) - Assigned Userno (7045) 19/12/2005 07:32:06 User (guest) logging in from (LIMS-CIT) - Assigned Userno (1959) 19/12/