Come for the quick hacks, stay for the epiphanies. | |
PerlMonks |
Re: Re: (GOLF)Re: Leading Zeros w/ incrementby extremely (Priest) |
on Apr 05, 2001 at 23:12 UTC ( [id://70232]=note: print w/replies, xml ) | Need Help?? |
If you don't need to pad then $count++ works fine.
The trick to this all is that perl's ++ is magical
on some strings. Try these:
You'll notice when you run those that $e gets chopped to just numbers. In fact, my stunting isn't really necessary since perl will happily leave the "00" on the front of $d! The only trick to it is never treating $d as a number. Look at this:
Cute huh? Perl is like a squirrel's nest. Good stuff is everywhere but most of it is nuts... Your code could be re-updated to have quotes around "$String" in the comparison for the loop and just have $String++ where the "magical" part was. Sad that I didn't even know how slick it was. My stunt kept the comparison from blasting the string but it is better just to never treat it numerically. --
In Section
Cool Uses for Perl
|
|