up vote 3 down vote favorite
share [g+] share [fb]

I have the following Perl script that generates a string based on a number:

my @chars;
push @chars, map(chr, 48..57), map(chr, 97..122);
my $c = $#chars+1;

for (0..50) {
    my $string;
    my $l = $_ / $c;
    my $i = int $l;
    my $r = ($l - $i) * $c;
    $string .= $chars[$r];
    while ($i > 0) {
        $l = $i / $c;
        $i = int $l;
        $r = ($l - $i) * $c;
        $string .= $chars[$r];
    }
    print "$string\n";
}

When I run this I get the following output:

0
1
2
3
4
...
z
01
01
21
21
41
41
61
61
81
91
91
b1
b1
d1
d1

What am I missing? Thankful for any help!

link|improve this question
What are you trying to get it to do? What exactly are you asking? Are you asking how you convert radix or are you asking for an analysis of that perl code? – D. Patrick May 15 '09 at 14:52
I am trying to create something similar to Base64 but with the base of 36 in this case, using the character range given in @chars. – tbjers May 15 '09 at 14:54
feedback

2 Answers

up vote 3 down vote accepted

Try this instead, it's a little clearer than the script you have and properly converts to an arbitrary base:

my @chars;
push @chars, map(chr, 48..57), map(chr, 97..122);

my $base = @chars;

for my $num (0..100) {
    my $string = '';

    while ($num >= $base) {
        my $r = $num % $base;
        $string .= $chars[$r];

        $num = int($num / $base);
    }
    $string .= $chars[$num];
    print reverse($string) . "\n";
}
link|improve this answer
Sweet, this works and does exactly what I wanted it to do! – tbjers May 15 '09 at 14:59
2  
I'd probably write my @chars = map chr, 48..57, 97..122; or my @chars = (0..9, 'a'..'z');, but to each their own :) – ephemient May 15 '09 at 15:40
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.