in reply to Re^3: using fields in perl
in thread using fields in perl

From perlfunc's entry on split:
As a special case, specifying a PATTERN of space (' ') will split on white space just as split with no arguments does. Thus, split(' ') can be used to emulate awk's default behavior, whereas split(/ /) will give you as many null initial fields as there are leading spaces. A split on /\s+/ is like a split(' ') except that any leading whitespace produces a null first field. A split with no arguments really does a split(' ', $_) internally.

Replies are listed 'Best First'.
Re^5: using fields in perl
by demerphq (Chancellor) on Dec 25, 2007 at 20:44 UTC

    Im hoping 5.12 will allow one to supply a modifier to the split so you can have the "ignore leading nulls" behaviour with any pattern.

    ---
    $world=~s/war/peace/g