in reply to Re: Re: Regx Question
in thread Regx Question

my @chunks = split /\\/ => $data; splice @chunks => -2, 1 if $chunks [-1] eq 'final'; $data = join "\\" => @chunks;
Abigail

Replies are listed 'Best First'.
Style Question: => vs ,
by laughingboy (Monk) on Jul 31, 2002 at 16:11 UTC
    What is your rule of thumb for using => instead of , in argument lists?

    laughingboy

      => separates arguments with different types/roles.

      Abigail