in reply to Re: print statement problem
in thread print statement problem

Thanks,
I tried the split syntax change and It works great.
right on
Cal

Replies are listed 'Best First'.
Re^3: print statement problem
by Aristotle (Chancellor) on Jul 23, 2002 at 00:15 UTC
    It should really be written as split /\./, $file though, since split actually uses a regex as the delimiter. Passing a string is misleading and may trip someone who casually reads your code.

    Makeshifts last the longest.