jdavis wrote: > I found the error. Sorry to answer my own queston > I was trying > > (@bad,@good) = split(/ /, $string); > > when i needed > > ($bad,$good) = split(/ /, $string); > > thanks for all the help. > > jd
If you had chosen to use strict; your compiler would have brought this to your attention immediately. Save time, use strict; Joseph -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]