well, let me take a crack at it:

use strict; my $string = 'Fri Oct 13 2000 20:11:54 + Page 1'; my @array = ($string, $string, $string); for (@array) { $_ =~ s/\:(\d+)\b(\s)+(\w)+(\s)+(\d)+/:$1/; } print "$array[0]\n$array[1]\n$array[2]\n\n";
which does:
/home/jptxs > perl -w impala Fri Oct 13 2000 20:11:54 Fri Oct 13 2000 20:11:54 Fri Oct 13 2000 20:11:54 /home/jptxs >
This probably isn't as robust as you want but it's a start. see perlre for some more info on what's being done. Basically, it's just a regx being applied to each member of your array and using replace to get rid of what you don't want. I can go through the regex step by step if you like, but that woudl take all the fun out of pulling it apart : )

"sometimes when you make a request for the head you don't
want the big, fat body...don't you go snickering."
                                         -- Nathan Torkington UoP2K a.k.a gnat


In reply to Re: Cropping Elements in an Array by jptxs
in thread Cropping Elements in an Array by ImpalaSS

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • 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:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.