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

Re: Split int into segments of max int 26

by AnomalousMonk (Archbishop)
on Sep 13, 2017 at 02:13 UTC ( [id://1199250]=note: print w/replies, xml ) Need Help??


in reply to Split int into segments of max int 26

I'm also a bit confused about what you want. I think one of the other replies may hold your solution, but have you forgotten the Perl "magic" string incrementer:

c:\@Work\Perl\monks>perl -wMstrict -le "for my $s (qw(Y Z AA ZY ZZ AAA ZZY ZZZ AAAA)) { my $t = $s; printf qq{'$t' -> }; $t++; print qq{'$t'}; } " 'Y' -> 'Z' 'Z' -> 'AA' 'AA' -> 'AB' 'ZY' -> 'ZZ' 'ZZ' -> 'AAA' 'AAA' -> 'AAB' 'ZZY' -> 'ZZZ' 'ZZZ' -> 'AAAA' 'AAAA' -> 'AAAB'
If you already have string 'ABC', you can always go to the next step.


Give a man a fish:  <%-{-{-{-<

Replies are listed 'Best First'.
Re^2: Split int into segments of max int 26
by thanos1983 (Parson) on Sep 13, 2017 at 07:51 UTC

    Hello AnomalousMonk,

    Thanks a lot for the clue, I had no idea. I was looking for something like that to be honest :), thanks for sharing.

    BR / Thanos

    Seeking for Perl wisdom...on the process of learning...not there...yet!

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others avoiding work at the Monastery: (4)
As of 2024-04-24 21:15 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found