Beefy Boxes and Bandwidth Generously Provided by pair Networks
go ahead... be a heretic
 
PerlMonks  

Re: Suggestion for teaching Perl

by bobione (Pilgrim)
on Apr 14, 2001 at 14:38 UTC ( [id://72565]=note: print w/replies, xml ) Need Help??


in reply to Suggestion for teaching Perl

Well... Let's try to answer (as I am a newbie :)
I found your question very easy. I am sure I am wrong so I take my camel book to see reverse's section and I seek something which I would not have seen before.
I am not sure that reverse ($aloha) is assumed as a LIST or a string. But my answer is "hello" ! ... and reverse ("$aloha") will return "olleh".

BoBiOne KenoBi ;)

Replies are listed 'Best First'.
Re: Re: Suggestion for teaching Perl
by nysus (Parson) on Apr 14, 2001 at 18:21 UTC
    You are correct that reverse in a scalar context will reverse the bytes in its argument. So, my $x = reverse($aloha); would result in assigning $x to "olleh".

    However, the output of this particular piece of code is not "olleh" at all! The output of above code is just plain old "hello".

    Why? Well, it's because in this instance, reverse is being used in a list context. To prove to yourself that it is being used in a list context, run this bit of code through Perl:

    #!/usr/bin/perl -w use strict; my $aloha = "hello"; my $adios = "goodbye"; print reverse($aloha, $adios);
    What happens now? The result is "goodbyehello"! This is precisely how you would expect reverse to work in a list context: it reverses the order of the elements in the list.

    Finally, try this piece of code:

    #!/usr/bin/perl -w use strict; my $aloha = "hello"; print scalar(reverse($aloha));
    The scalar function forces a scalar context an indeed, the output yields "olleh".

    So what is putting reverse($aloha) in a list context? It is our friend, the print function. If you kindly refer to your Camel book, or your Perldoc, or your Learning Perl book or whatever handy refernce you have a available, you will see that print places its arguments into a list context.

    So, looking back at our original piece of code, the reason why it prints just plain old "hello", is that it is reversing the elements in the list and not the bytes in the string. Since there is only one element in the list, the list reversed is precisely same as the original list!

    Monks, please chime in if this explanation is not exactly accurate.

Log In?
Username:
Password:

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

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

    No recent polls found