My suggestion ( tested)

my $infile = "try.txt"; open my $INFILE, q{<}, $infile or die; my $outfile = "results.txt"; open my $OUTFILE, q{>}, $outfile or die; while (my $line = <$INFILE>){ $line =~ s/\s+$//; print STDOUT "the line is $line\n"; #if ($line =~ /(\d+):(\d)::\/(\d+)/){ if ($line =~ /(\d+):(.*)\/(\d+)/){ print $OUTFILE "the first decimals are $1\n"; print $OUTFILE "the last decimals are $3\n"; print $OUTFILE "the middle element is $2\n"; } print $OUTFILE "\n"; } close $INFILE; close $OUTFILE;

In $1: you have 2001

Perl understands the ":" in the regex

in $2, you have 1:: or 0:6:4003:: or :12

in $3, you have 64 or 128

Hope it helps !

Here are the reuslts

the first decimals are 2001 the last decimals are 64 the middle element is 1:: the first decimals are 2001 the last decimals are 64 the middle element is 0:6:4003:: the first decimals are 2001 the last decimals are 128 the middle element is :12

In reply to Re: Regex host portion of IPv6 address by steph_bow
in thread Regex host portion of IPv6 address by ewhitt

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.