Beefy Boxes and Bandwidth Generously Provided by pair Networks
There's more than one way to do things
 
PerlMonks  

Re: Regex Matching

by LAI (Hermit)
on Jul 04, 2002 at 14:08 UTC ( [id://179459]=note: print w/replies, xml ) Need Help??


in reply to Regex matching

If, as it seems, you want to get a match on a line which matches the specified UFOFH ... pattern, and print the whole line (or dump it into a variable), I would do the following (and, of course, TMTOWTDI):
$mailbox =~ m#UFOFH( [\d/]{5}){4,27}# && print $&;
This way, you use the $& variable to print out whatever was matched. With this implementation, any additional characters after 4 to 27 5-character blocks will be silently discarded, as will any characters before the UFOFH. You can prevent this (if you want) by rewriting the code as:
$mailbox =~ m#^UFOFH( [\d/]{5}){4,27}$# && print $&;
to trap the beginning and end of the string. Don't forget to chomp() it though!

LAI
:eof

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://179459]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others taking refuge in the Monastery: (3)
As of 2024-04-20 01:43 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found