in reply to Re: Passing multiple arrays to foreach loop
in thread Passing multiple arrays to foreach loop

Yes Sir, I did try and it did work. However my actual code goes through more than thousand files and I was not certain if it actually completed all three arrays or not hence the question. Sorry for the trouble.
  • Comment on Re^2: Passing multiple arrays to foreach loop

Replies are listed 'Best First'.
Re^3: Passing multiple arrays to foreach loop (list flattening)
by LanX (Saint) on May 12, 2013 at 12:19 UTC
    From all the answers you got, the one from Athanasius was IMHO the best so far.

    It's elementary for Perl that @arrays and %hashes are flattened in list context, not only in the case of a foreach (LIST), but whenever the docs talk about "LIST" as parameter.

    from perldata#List value constructors

    LISTs do automatic interpolation of sublists. That is, when a LIST is evaluated, each element of the list is evaluated in list context, and the resulting list value is interpolated into LIST just as if each individual element were a member of LIST. Thus arrays and hashes lose their identity in a LIST--the list

    (@foo,@bar,&SomeSub,%glarch)

    contains all the elements of @foo followed by all the elements of @bar, followed by all the elements returned by the subroutine named SomeSub called in list context, followed by the key/value pairs of %glarch.

    for instance
    DB<105> @a=1..3 => (1, 2, 3) DB<106> @b=a..c => ("a", "b", "c") DB<107> @c=(@a,@b) => (1, 2, 3, "a", "b", "c")

    HTH! =)

    Cheers Rolf

    ( addicted to the Perl Programming Language)

Re^3: Passing multiple arrays to foreach loop
by GrandFather (Saint) on May 14, 2013 at 10:31 UTC

    It was not "trouble", and actually not a bad question, but learning to write small test programs to check your understanding is a very useful art. The same art applies when the question grows beyond anything one can answer for oneself, but then the art morphs into being able to create a small focused test script that others can use as a test bed for understanding your issue and providing a solution.

    True laziness is hard work