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

Re: Variable assignment confusion

by fruiture (Curate)
on Dec 15, 2003 at 17:48 UTC ( [id://314862]=note: print w/replies, xml ) Need Help??


in reply to Variable assignment confusion

Well, you're assigning either the result of a match or, if the match is without success, the retid + "_001". It's not true that this always assigns 1, it only assigns 1 when the match is successfull, because a simple m// returns a boolean (undef or 1) and || will return it's left operand's result if it's true.

What you want is, as you said:

# parens not neccessary here
my $new_retid = 
# if the retid has the suffix
    $retid =~ /_\d{3}$/ ?
# then leave it as is
    $retid :
# otherwise add _001 suffix
   $retid.'_001'

See perlop for "?:" and the behaviour of m//. HTH

--
http://fruiture.de

Log In?
Username:
Password:

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

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

    No recent polls found