Ok, first here's my data;
record1
field2 2345
record2
record3
field1 GAGGA
field2 7848
field2a 5m
Each field is slightly indented, with a record always beginning at column 4.
What I'm trying to do is break this up into records, so I can process the fields. Here's the basic algorithm I'm playing with:
foreach $record ($formatted_data =~ m/(^ {3}\w.*)/mg) {
&process_record($record);
}
Which only returns the first line of a given record, as though my "." wasn't matching
\n.
I gave up trying to
split the data, because I need that first
\w. I also abandoned using
[\s\S] instead of "." , since that was
too greedy; yet not greedy enough if I subdued it with a "?" thus:
m/(^ {3}\w[\s\S]*?)/mg.
There must be a middle ground here somewhere... I can feel I'm close...
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
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, details, 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, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
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.