Beefy Boxes and Bandwidth Generously Provided by pair Networks
We don't bite newbies here... much
 
PerlMonks  

Re: What is regular expression for the following thing?

by Punitha (Priest)
on Oct 20, 2008 at 09:13 UTC ( [id://718171]=note: print w/replies, xml ) Need Help??


in reply to What is regular expression for the following thing?

Hi sanjay nayak

You can have a quick reference about the perl regular expressions here http://perldoc.perl.org/perlrequick.html

Moreover in your example coding you misused the matching operator. It should be =~ and you may want something like this

if ($text =~ /^(?:REGISTER|INVITE|BYE)\s\w+[-@_]\w+\.\w+\sSIP\/2\.0/) { print "IN:$text\n"; }

Punitha

Replies are listed 'Best First'.
Re^2: What is regular expression for the following thing?
by ikegami (Patriarch) on Oct 20, 2008 at 09:18 UTC
    I think you meant [-\@_].
    >perl -le"@_='abc'; print qr/[-@_]/;" (?-xism:[-abc])

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others admiring the Monastery: (5)
As of 2024-04-25 08:27 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found