Hi all,
after great help from tye and ambros on CB i get this code to work(regex done by tye and ambros)
#!"C:\perl\bin\perl.exe"
use warnings;
use strict;
open(INFILE, '<', 'test_data.txt') or die("open failed: $!");
while (<INFILE>) {
my ($ezb, $numbers) = split(';',$_);
my( $pre, $in, $post )= $numbers =~ /^ ([^()]*) \( ([^()]*) \) ([^
+()]*) $/x;
#my @number_split = split(',', $numbers);
print "$pre\t$in\t$post\n";
}
here is some data
201.1;201(27, 28, 3, 4, 83, 84, 890, 897, 898, 9), 2054
201.2;201(1, 20-26, 29, 80-82, 891-896, 899)
201.3;201(52-54, 6, 75, 76, 85-88)
201.4;201(50, 51, 55-59, 70-74, 77-79)
the above code works for the mentioned data.
now i get something like this data
2302.1;2302, 2304(3-8, 92-99), 2305(2, 4-9)
231.1;2301, 2303, 2304(1, 2, 90, 91), 2305(1, 3), 2306, 2307, 2308
best woud be if i can place every NUMBER(numbers) in one array and the rest in one array, the stuff infront of the ; can be ignored will be splited away
idears and help greatly welcome
i tryed splitting at ( and count and recombine but this ends in a mess of nonsens
kd ultibuzz
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.