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

Re3: Conditionally Changing a Variable

by Hofmator (Curate)
on Dec 17, 2001 at 23:53 UTC ( [id://132635]=note: print w/replies, xml ) Need Help??


in reply to Re: Re: Conditionally Changing a Variable
in thread Conditionally Changing a Variable

I had a similar problem in the past with variables such as: $n = $filenameB if ($n = $filenameA);

No wonder you are having problems with this, two errors in the same line :). First of all you are doing an assignment in the if-condition so this should be '==' instead of '='. And second '==' only works for numbers which is probably not what you want ($filename !!). You should use 'eq' instead. $n = $filenameB if ($n eq $filenameA);

-- Hofmator

Replies are listed 'Best First'.
Re: Re3: Conditionally Changing a Variable
by Anonymous Monk on Dec 18, 2001 at 00:05 UTC
    Ah....the answers I had forgotten and needed. Thanks.

Log In?
Username:
Password:

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

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

    No recent polls found