Beefy Boxes and Bandwidth Generously Provided by pair Networks
P is for Practical
 
PerlMonks  

Re: Regex question

by thelenm (Vicar)
on Mar 19, 2004 at 22:07 UTC ( [id://338191]=note: print w/replies, xml ) Need Help??


in reply to Regex question

What I would do is set the default value first, then try the match. Something like this:

$match = "chiapet"; # default value if ($string =~ /foobar(...)/) { # probably want to capture something +here $match = $1; }

Or the ternary ?: operator, like this:

$match = ($string =~ /foobar(...)/) ? $1 : "chiapet";

-- Mike

--
XML::Simpler does not require XML::Parser or a SAX parser. It does require File::Slurp.
-- grantm, perldoc XML::Simpler

Log In?
Username:
Password:

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

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

    No recent polls found