Hi,
my quick and dirty proposal:
#!/usr/bin/perl
use strict;
use warnings FATAL => qw(all);
my @lines = (
'brown vihl729 172.31.176.71:8532503_6 (v2013.02) (elicserv1.muc.i
+fin.com/3120 6260), start Mon 3/11 18:31',
'stephen blrl267 172.20.150.73:233707_1 (v2) (elicserv2.muc.ifin.c
+om/3120 4789), start Tue 3/12 6:32 ',
'martin vihlc295 172.31.176.73:33228361_1 (v2012.11) (elicserv1.mu
+c.ifin.com/3120 4152), start Wed 3/6 12:08 ',
);
foreach my $line (@lines) {
my ($user, $d1, $d2, $version, $server, $d3, $s, $date) = split /\
+s+/, $line, 8;
for ($version, $server) {
s/^\(//;
s/\)$//;
s#/.+$##;
}
print "user: $user version: $version server: $server date: $
+date\n";
}
Best regards
McA
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.