LINUX.IE, website of the Irish Linux Users' Group
Tux rules!

   
Home
New Users
Articles
Download
Projects
Community
Vendors

  Print Version
Email to...
 
Archives:


planetILUG

Recent News

News Archive


Join the
ILUG
on FaceBook


Join the
ILUG
on LinkedIn


Join the
ILUG SETI
Group



















 
 :: Mailing Lists

[ILUG] [OT] perl help

[ILUG] [OT] perl help

Philip Reynolds phil at redbrick.dcu.ie
Wed Sep 13 17:17:15 IST 2000


Paul Jakma's [paulj at itg.ie] 28 lines of dribble included:
:>as per kevin l.'s suggestion i've decided to try my hand at perl
:>(and cause this list could do with a spate of perl newbie questions)..
:>
:>so i'm trying to capture parts of the results of a /regex/ into
:>variables, eg something along the lines of:
:>
:>basically i'm trying to figure out how to do something like the
:>following:
:>
:>while (<MSGS> ) {
:>        if (/^([A-Za-z]{3}) ([0-9]{2}) ([0-9{2}).*$regex[$i]/) {
:>                $month[$i] = \1;
:>                $date[$i] = \2;
:>                $hour[$i] = \3      
:>}

What you're doing (assuming your regexp is correct) is something similar to
the following?

#!/usr/bin/perl
# Testing Read-Only vars

$_ = "First Second";
/(\w+)\W+(\w+)/;

print "$1 \n";
print "$2 \n";

It can also be done using

#!/usr/bin/perl
$_ = "First Second";
($first, $second) = /(\w+)\W+(\w+)/;
print "$first\n";
print "$second\n";


Y'see, \1 marks the first part of the paranthesised values, and $1, $2, $3
etc. are set after the regular expression has executed.
Phil.




More information about the ILUG mailing list
Read this without the formatting.
                                                                                                    

 

Hosted by HEAnet


Maintained by the ILUG website team. The aim of Linux.ie is to support and help commercial and private users of Linux in Ireland. You can display ILUG news in your own webpages, read backend information to find out how. Networking services kindly provided by HEAnet, server kindly donated by Dell. Linux is a trademark of Linus Torvalds, used with permission. No penguins were harmed in the production or maintenance of this highly praised website. Looking for the Indian Linux Users' Group? Try here. If you've read all this and aren't a lawyer: you should be!
RSS Version
Powered by Dell