On 2/2/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > Apparently, the statement "@Row = split(/\s+/, $TheRec);" is not > recognizing the blanks between the fields in the input record. Are they > something > other than blanks?
That's a good question to ask the debugger. The 'x' command in the debugger will evaluate any perl expression, so you could do something like 'x $TheRec', or even 'x split(/\s+/, $TheRec)', once you've reached the right point at runtime. The perldebug manpage has the details. Hope this helps! --Tom Phoenix Stonehenge Perl Training -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] <http://learn.perl.org/> <http://learn.perl.org/first-response>