in reply to Re: how extract and group data in a array
in thread how extract and group data in a array

yeah, your way is the first into my mind, set status variable, store data into an array etc. but since the data in array is a bit like html/xml, I thought someone would write module to do this.....
  • Comment on Re^2: how extract and group data in a array

Replies are listed 'Best First'.
Re^3: how extract and group data in a array
by kcott (Archbishop) on Feb 21, 2017 at 21:30 UTC
    "... but since the data in array is a bit like html/xml, I thought someone would write module to do this....."

    If @dd was only intended as example data, and your real data is HTML or XML, then there are modules for that (which would probably be a better choice than reinventing the wheel and writing your own parsing code). Try http://search.cpan.org/ and look for modules in the HTML:: or XML:: namespaces.

    — Ken