in reply to Re^3: Crafting a regex for a split() function...
in thread Crafting a regex for a split() function...

Thank you very much for the explaination. Storing arguements in @_ makes a great deal of sense.

-mox
  • Comment on Re^4: Crafting a regex for a split() function...

Replies are listed 'Best First'.
Re^5: Crafting a regex for a split() function...
by GrandFather (Saint) on Nov 23, 2006 at 02:30 UTC

    It's not a "makes sense" thing, it is a "what Perl does thing". Parameters to subroutines are passed in the special array @_ - that's what Perl does.

    Go back and read the perlsub link that ikegami gave. That is pretty fundamental and important stuff to understand about how Perl goes about business. Take special note that array and hash parameters are flattened - look for the description of that process. There is a lot to understand about how Perl manages parameter passing!


    DWIM is Perl's answer to Gödel