help needed

2004-04-06 Thread Divyesh R. Patel
Hi, i am a student at collage who has never used Perl before. I need to crate an program that looks through a text file, find the data need and put it in an graph. I have no idea how to go about this . can any one out there help me with this. your help will be much appreciated. Thank you for

Re: help needed

2004-04-06 Thread Rob Dixon
Divyesh R. Patel wrote: Hi, i am a student at collage who has never used Perl before. I need to crate an program that looks through a text file, find the data need and put it in an graph. I have no idea how to go about this . can any one out there help me with this. your help will be much

RE: help needed

2004-04-06 Thread Thomas, Mark - BLS CTR
Hi, i am a student at collage who has never used Perl before. I need to crate an program that looks through a text file, find the data need and put it in an graph. I have no idea how to go about this . can any one out there help me with this. your help will be much appreciated. Thank

Re: help needed

2004-04-06 Thread Jeff Griffiths
Thomas, Mark - BLS CTR wrote: Hi, i am a student at collage who has never used Perl before. I need to crate an program that looks through a text file, find the data need and put it in an graph. I have no idea how to go about this . can any one out there help me with this. your help will be

Re: help needed

2004-04-06 Thread Michael 'topdog' Thompson
hi mark, "I need to crate an program that looks through a text file", i would suggest looking into something called "regular expressions", or "regex". it's faster than parsing by using sub-strings. there is also an o'reilly book on it; i believe its worth the investment. regards,

Array Hash Reference Confusion

2004-04-06 Thread Deane . Rothenmaier
Hi, readers. I'm having another senior moment, apparently, as the following shows: my %DW_AutoSearch = ( 0x = [ Off, On, Off, Off ], 0x0004 = [ Off, Off, On, Off ], 0x0005 = [ Off, Off, Off, On ], 0x0006 = [ On, Off, Off, Off ] );

RE: Array Hash Reference Confusion

2004-04-06 Thread Joseph Discenza
[EMAIL PROTECTED] wrote: I'm having another senior moment, apparently, as the following shows: my %DW_AutoSearch = ( 0x = [ Off, On, Off, Off ], 0x0004 = [ Off, Off, On, Off ], 0x0005 = [ Off, Off, Off, On ],

Re: help needed

2004-04-06 Thread Martin Leese
Jeff Griffiths [EMAIL PROTECTED] wrote: ... Here is a link to a free online book targeted at new Perl developers: http://learn.perl.org/library/beginning_perl/ Here is another free online book: http://www.ebb.org/PickingUpPerl/ I like Picking Up Perl because the book is available both in separate

RE: Array Hash Reference Confusion

2004-04-06 Thread Wagner, David --- Senior Programmer Analyst --- WGO
[EMAIL PROTECTED] wrote: [EMAIL PROTECTED] wrote: I'm having another senior moment, apparently, as the following shows: my %DW_AutoSearch = ( 0x = [ Off, On, Off, Off ], 0x0004 = [ Off, Off, On, Off ], 0x0005 = [ Off, Off, Off,

RE: Array Hash Reference Confusion

2004-04-06 Thread Moon, John
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 06, 2004 3:17 PM To: [EMAIL PROTECTED] Subject: Array Hash Reference Confusion Hi, readers. I'm having another senior moment, apparently, as the following shows: my %DW_AutoSearch =

RE: Array Hash Reference Confusion

2004-04-06 Thread Kipp, James
my %DW_AutoSearch = ( 0x = [ Off, On, Off, Off ], 0x0004 = [ Off, Off, On, Off ], 0x0005 = [ Off, Off, Off, On ], 0x0006 = [ On, Off, Off, Off ] ); my $value = 0x0005; my @outs