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

Re^2: A first attempt

by jdalbec (Deacon)
on Jun 19, 2006 at 23:08 UTC ( [id://556303]=note: print w/replies, xml ) Need Help??


in reply to Re: A first attempt
in thread A first attempt

It's called a version string. Any "number" with more than one decimal point is converted to the corresponding characters. This is deprecated, but all's fair in obfuscation.

There's no "IP address" type in Perl. What are you doing with the IP address? If you need a packed IP address, 1.2.3.4 will work, but the accepted way to do this is
use Socket; $a = inet_aton("1.2.3.4");
If you want the string "1.2.3.4" then use quotation marks.

Replies are listed 'Best First'.
Re^3: A first attempt
by zerogeek (Monk) on Jun 20, 2006 at 01:22 UTC
    Thanks for the info. I was only using the IP address as a "what if". For example, I could imagine a situation where I might have the following:
    $string = "My IP address is 10.1.1.1!\n"

    Or, better yet, what if I had a function that grabbed my current IP address (let's call it $IP) and then I changed the above to:
    $string = "My current IP address is $IP\n"

    Thanks in advance, I'm just trying to grasp this more fully. It is certainly a neat item to mess around with...

    Also, is this discussed in any of the O'Reilly Perl books? Mine are at work right now, but I'll page through them when I go in tonight.

Log In?
Username:
Password:

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

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

    No recent polls found