RE: incrementing values in base 36

2002-10-12 Thread Patrick Connolly
: Selector, Lev Y [mailto:[EMAIL PROTECTED]] Sent: Friday, October 11, 2002 3:57 PM To: [EMAIL PROTECTED] Subject:incrementing values in base 36 Hello, 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

incrementing values in base 36

2002-10-11 Thread Selector, Lev Y
Hello, 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: # - #

Re: incrementing values in base 36

2002-10-11 Thread Sean McAfee
Selector, Lev Y [EMAIL PROTECTED] wrote: Hello, 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: