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.