Here's another option:
use Modern::Perl;
use Data::Dumper;
my @array;
my $str =
"1. ...... AB_CD 1.1 ...... EF_GH 1.2 .... IJ_KL_MN 2. ............
+OPQR";
while ( $str =~ /(\d+\.\d*)\s+\.+\s+(\S+)\s*/g ) {
push @array, { chapter => $1, name => $2 };
}
say Dumper \@array;
Output:
$VAR1 = [
{
'name' => 'AB_CD',
'chapter' => '1.'
},
{
'name' => 'EF_GH',
'chapter' => '1.1'
},
{
'name' => 'IJ_KL_MN',
'chapter' => '1.2'
},
{
'name' => 'OPQR',
'chapter' => '2.'
}
];
The regex:
/(\d+\.\d*)\s+\.+\s+(\S+)\s*/g
^ ^ ^ ^ ^ ^ ^ ^ ^
| | | | | | | | |
| | | | | | | | + - Globally
| | | | | | | + - 0+ spaces
| | | | | | + - Capture non-whitespace characters
| | | | | + - 1+ spaces
| | | | + - Multiple periods
| | | + - 1+ spaces
| | + - Capture zero or more digits
| + - Capture a period
+ - Capture one or more digits
Hope this 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.
|
|