logo       

Re: incrementing values in base 36: msg#00016

Subject: Re: incrementing values in base 36
Quoting Selector, Lev Y (Lev.Selector@xxxxxx):
> I have integer numbers represented in base 36 (each digit may have one of 36
> values: ('0'..'9','A'..'Z')).
> For example: '5BFHK'.
> I need to increment the number by 1 or by some step (for example, by 25).
> Here is my first take on incrementing by 1:

I don't have a fun way to do > 1 increments, but this is a fairly fun way to
do single increments:

@next{('0'..'9','A'..'Y', '')} = ('1'..'9','A'..'Z', '1');

sub advance {
    my($num) = @_;
    $num =~ s/([0-9A-Y]|)(Z*)$/$next{$1}.'0' x length($2)/e;
    return $num;
}
   
for (qw(5BFHK 111Z ZZZZ)) { print "\n$_\n",advance($_),"\n"; }

It exploits the fact that only Z does anything very interesting, and
interprets the strings as

AAANZZZZ

(where "A" is any alphanumeric, and "N" is not Z). The "N" is incremented,
the the "Z"s are all changed to "0". The mapping "" => "1" in %next takes
care of the case where the string is all Zs.

Any time I see Perl code looping through characters, I always try to turn it
into a regular expression. It's faster and often more readable.

I had a feeling when I was writing this that I should be using tr///
somehow, but I can't see how it would work. Maybe someone else can figure it
out.

Adam

-- 
Adam Rice -- wysiwyg@xxxxxxxxxxxxxxxxxxxxxx -- Blackburn, Lancashire, England



<Prev in Thread] Current Thread [Next in Thread>
Google Custom Search

Recently Viewed:
audio.irate.dev...    yellowdog.gener...    ietf.ips/2002-0...    xfree86.fonts/2...    busybox/2003-07...    emacs.jdee/2004...    linux.mandrake....    hardware.microc...    user-groups.lin...    science.analysi...    version-control...    db.filemaker.de...    cluster.openmos...    mail.eyebrowse....    text.xml.xerces...    kde.devel.kwrit...    finance.moneyda...    gcc.regression/...    network.routing...    os.freebsd.deve...    recreation.radi...    qnx.openqnx.dev...    python.xml/2002...   
Home | blog view | USPTO Patent Archive | advertise | OSDir is an inevitable website. super tiny logo

Free Magazines

Cisco News
Receive a free quarterly e-newsletter with exclusive articles on how Cisco IT uses its own products and solutions to enable the business.
subscribe

Systems Management News, the newspaper for IT systems administration and data center managers! Each issue of Systems Management News is chock-full of news and analysis to help you understand what's happening in your field.
subscribe

The Enterprise Newsweekly eWeek is the essential technology information source for builders of e-business.
subscribe

Oracle Magazine Oracle Magazine contains technology strategy articles, sample code, tips, Oracle and partner news, how to articles for developers and DBAs, and more. Oracle (NASDAQ: ORCL) is the world's largest enterprise software company.
subscribe

Total Telecom Total Telecom is "The Economist of the communications industry".
subscribe