If NAME and HAVENT_GOT_A_CLUE can both contain spaces, then the instance where there is no 'prependition' will cause you real problems IF the last field can start with a letter. But if it can't, here's what I'd do:
#!/usr/bin/perl -w
use strict;
my $Prep_Re = join '|',('VAN DER','VAN DE','DEN','DE','VAN');
while (<DATA>) {
s/\s{2,}/ /g;
s/^\s*(.*?)\s*$/$1/;
if ( /(.+?) ($Prep_Re) ?((?:[^A-Za-z].*)?)/ ) {
my ($Name,$Prep,$Unknown) = ($1,$2,$3);
print "$Name == $Prep == $Unknown\n";
}
elsif ( /(.+) ([^A-Za-z].*)?/ ) {
my ($Name,$Prep,$Unknown) = ($1,'',$2);
print "$Name == $Prep == $Unknown\n";
}
else {
print "No idea for $_\n";
}
}
__DATA__
WINTER DE <A240>
ZANDEN VAN DER ŤAť
JENSEN 230
WOODHEAD <D>
BRINK 130,-
HEYDIER DEN <240>
SMITSER (4X115PJ)
LINDEN VAN DER
MOTEL GOLDEN LEEUW <A225>
.02
ps - the nearest word I could find was cognomen, but I bet that's not right either :)
--
seek(JOB,$$LA,0);
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.