Here is one approach:
#! perl
use Modern::Perl;
use Data::Dump;
my @array1 =
(
undef,
undef,
'abcd',
'efgh',
undef,
undef,
'jklm',
'nopq',
undef,
undef,
);
my @array2 = split /\0\0/, join('', map { $_ // "\0" } @array1);
@array2 = @array2[1 .. $#array2] unless $array2[0];
dd @array1;
dd @array2;
Output:
21:38 >perl 508_SoPW.pl
(
undef,
undef,
"abcd",
"efgh",
undef,
undef,
"jklm",
"nopq",
undef,
undef,
)
("abcdefgh", "jklmnopq")
21:38 >
Update 1: The above assumes that “blank” means undef. If it means '' (the empty string), then change the expression:
map { $_ // "\0" } @array1
to
map { $_ || "\0" } @array1
map { $_ eq '' ? "\0" : $_ } @array1
30th January, 2013. Amended to address the problem noted by The Perlman, below.
Update 2: As with muba’s solution below, the above assumes that the array begins with a double blank.
Hope that helps,
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
Outside of code tags, you may need to use entities for some characters:
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.