I think the confusion stems from (x,y,z,etc) which looks like an array; when, in fact, it's a string, i.e. '(x,y,z,etc)'.
Assuming I've got that right, this piece of code shows how to split the data. I'm still not entirely sure what you mean by "There are also times when there is no data": I've added 3 additional tests with no data between commas, between parentheses and between single-quotes.
#!/usr/bin/env perl
use strict;
use warnings;
use Data::Dumper;
my $res_re = qr{ \A [(] ( .* ) [)] \z }x;
my @all_res = (
['(x,y,z,etc)', 'maybe other stuff'],
['(x,y,z,etc,,abc,,,def)', 'maybe other stuff'],
['()', 'maybe other stuff'],
['', 'maybe other stuff'],
);
for (@all_res) {
my @res = @$_;
print Dumper \@res;
$res[0] = '()' unless $res[0];
my $res_wanted = [ split /,/ => ($res[0] =~ $res_re)[0] ];
$res_wanted = [ '' ] unless @$res_wanted;
print Dumper $res_wanted;
print '-' x 60, "\n";
}
Here's the output:
$ pm_split_res_for_excel.pl
$VAR1 = [
'(x,y,z,etc)',
'maybe other stuff'
];
$VAR1 = [
'x',
'y',
'z',
'etc'
];
------------------------------------------------------------
$VAR1 = [
'(x,y,z,etc,,abc,,,def)',
'maybe other stuff'
];
$VAR1 = [
'x',
'y',
'z',
'etc',
'',
'abc',
'',
'',
'def'
];
------------------------------------------------------------
$VAR1 = [
'()',
'maybe other stuff'
];
$VAR1 = [
''
];
------------------------------------------------------------
$VAR1 = [
'',
'maybe other stuff'
];
$VAR1 = [
''
];
------------------------------------------------------------
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.