Quick ?

2002-09-27 Thread Grant Hansen
What is the ! doing in this statement? $quit = 0; while (! $quit) Thanks -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

State Variables

2002-09-27 Thread Grant Hansen
Can anyone provide an example of how to use a state variable to break out of a loop? Thanks -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Help on Arrays - Beginner

2002-09-20 Thread Grant Hansen
y for further processing that I am confused on. Thanks On Friday 20 September 2002 08:06 pm, Timothy Johnson wrote: > I'll give you a hint. This is perfectly legal: > > my @array = ; > > Let me know if you still can't figure it out. > > -Original Message-

Help on Arrays - Beginner

2002-09-20 Thread Grant Hansen
, and reading it to , modifying each line, sort and then print. Here is the Input: Grant Hansen Dave Thomas Roger Starbauch Here is the intended output: Hansen, Grant Starbauch, Roger Thomas, Dave Here is my code: while() { chomp(@lines = split); @lines1 = $lines[1] . ", " .

RE: Looping Code ?

2002-02-28 Thread Grant Hansen
Here is the entire code: What I am trying to do is change the default page length in format from 60 to what ever the page length is for the data I am reading. This way the header will print at the top of each file instead of at the beginning of each 60 line page, which is what it is currently do