Re: parsing data from txt file

2010-12-27 Thread Jugurtha Hadjar
Hello, On 12/24/2010 06:45 PM, Uri Guttman wrote: "JH" == Jugurtha Hadjar writes: JH> my @data =0; JH> my @fields =0; JH> my @val=0; that has to be wrong. that is setting the arrays to a list with the element 0, not an empty list. Exactly. I tried t

Re: New Document: "How to Start Contributing to or Using Open Source Software"

2010-12-27 Thread Jugurtha Hadjar
Hello, I visited the page, and bookmarked it. It's funny, it's like you're describing almost the exact process I'm going through.. About the programming part, I'm in Control/Feedback Systems, but I think that every person has something to benefit from learning to program.. I used to be ver

Re: parsing data from txt file

2010-12-24 Thread Jugurtha Hadjar
Hello Chris, The variables aren't /initialized/ before they're used in this code.. So, something like print $out actually won't even know what the value of $out is in the first place, let alone write in it. You mentionned "processed.txt", but it was in a comment, not in the actual code.. And