Connecting Tech Pros Worldwide Help | Site Map

alpha-num numbering scheme in perl

  #1  
Old June 22nd, 2009, 01:48 PM
Newbie
 
Join Date: Feb 2009
Posts: 2
Hi,
Does anyone know how to get the alpha-numeric numbering scheme in perl ?
For example the
numberic => 0,1,2,...9,10,11,12,...99,100,... # $x = 0;$x++;
lower-alpha => a,b,c,...z,aa,ab,ac,...zz,aaa,... # $x = "a";$x++;
upper-alpha => A,B,C,..,Z,AA,AB,AC,...ZZ,AAA,... # $x = "A";$x++;
lower-alpha-num => a,b,c,...z,0,1,2,3,...9,aa,ab,ac,...zz,10,11,12,.. .99,aaa,... # ?
upper-alpha-num => A,B,C,..,Z,0,1,2,3,...9,AA,AB,AC,...ZZ,10,11,12,.. .99,AAA,... # ?

[ removed email]
  #2  
Old June 23rd, 2009, 03:48 AM
KevinADC's Avatar
Expert
 
Join Date: Jan 2007
Location: Southern California USA
Posts: 4,097

re: alpha-num numbering scheme in perl


what a jerk....... would someone whack this guys pee-pee
Reply

Tags
alpha-num, perl