Beefy Boxes and Bandwidth Generously Provided by pair Networks
Syntactic Confectionery Delight
 
PerlMonks  

Re: matching a regular expression

by turo (Friar)
on May 18, 2006 at 10:08 UTC ( [id://550204]=note: print w/replies, xml ) Need Help??


in reply to matching a regular expression

... is that what you're asking for?

my $valid = 0; my $state; my $firstAttempt = 1; while(!$valid){ if($firstAttempt) { $state = promptUser("What network to listen for SNMP t +raps [hsbn or admin]? ", "admin"); $firstAttempt = 0; } else { $state = promptUser("ERROR:$state Invalid Re-enter the + network", "admin"); } if($state =~ /^hsbn|admin$/) { $valid = 1; } } if ($state =~ /^hsbn$/i) { //some action for hsbn } elsif ( $state =~ /^hsb$/ ) { //some action for hsb } elsif ( $state =~ /^hs$/) { //some action for hs } elsif ( $state =~ /^h$/ ) { //some action for h }
good luck

perl -Te 'print map { chr((ord)-((10,20,2,7)[$i++])) } split //,"turo"'

Log In?
Username:
Password:

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

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

    No recent polls found