Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl Monk, Perl Meditation
 
PerlMonks  

Re: DIFFERENCE BETWEEN VARIABLE

by quidity (Pilgrim)
on Jan 31, 2001 at 17:20 UTC ( [id://55471]=note: print w/replies, xml ) Need Help??


in reply to DIFFERENCE BETWEEN VARIABLE

There is no difference, as far as perl is concerned, this is often a useful construct (albeit without the ' ' characters) which allows variables to be interpolated in strings next to other [A-Za-z_] characters:

$varname = 'poke'; print "${varname}mon\n";

Will output:

pokemon

while you could not have said:

print "$varnamemon\n";

as there is no such variable. You could avoid this by using . instead, but you'll see instances of the construct above.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others pondering the Monastery: (7)
As of 2024-04-16 09:09 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found