Beefy Boxes and Bandwidth Generously Provided by pair Networks
XP is just a number
 
PerlMonks  

Re: Character++

by dreadpiratepeter (Priest)
on Sep 07, 2002 at 22:48 UTC ( [id://195916]=note: print w/replies, xml ) Need Help??


in reply to Character++

Perl once again makes easy things easy. Simply use the automagical increment operator just as you would for a numerical counter. i.e.:
my $ctr='a'; print $ctr++ . "\n" foreach (1..26);
You can also do things like 'aa'..'zz'.


-pete
"Pain heals. Chicks dig scars. Glory lasts forever."

Replies are listed 'Best First'.
Re: Re: Character++
by ignatz (Vicar) on Sep 07, 2002 at 23:03 UTC
    But to decrement:
    my $ctr = 'a'; $ctr = chr( ord($ctr) - 1);
    Not sure why they decided not to implement -- on chars. (Thanks to Dog and Pony and Zaxo for pointing me to page 354 in Programming Perl for that.)
    ()-()
     \"/
      `                                                     
    
      Not sure why they decided not to implement -- on chars
      Not every computational process is reversable, nor should it be. "clintp"-- probably would go to "clinto" you'd think.

      "aa"-- might even logically go to "z", but then where should "a"-- go? "-a"? undef? ""? "`"? (how about on ebcdic systems?) Throw a warning (eeek! no warnings 'autodecrementascii'), throw an error (not remotely perlish!)?

      Sometimes language features are nice, you acknowledge them, maybe use them, move on, and not think too hard about making them fit into every conceivable programmatic niche you can think of. Perl's gotten in trouble for this kind of nonsense before (pseudohashes, v-strings). Enjoy magical autoincrement. And remember putting magic under a microscope takes all of the joy out of it.

        Couldn't you make the same arguments for 'Z'++? If you're gonna do the one, do the other.

        I figure that the rule of least surprise outweighs the fact that chr( ord('a') - 1) returns a backtick on most people's computers. ++ two equals three, -- two equals one; ++ 'b' equals 'c', -- 'b' equals '-1' Huhh??!!

        Sure, in the grande scheme of things, what's the diff. In my book this rates right up there with elsif. Another one of Perl's quirky little roadblocks that make people think.

        ()-()
         \"/
          `                                                     
        
      In which case, for small ranges, reverse 'a' .. 'z', might be a better choice.

      --
      perl -pew "s/\b;([mnst])/'$1/g"

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others romping around the Monastery: (3)
As of 2024-04-20 00:08 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found