converting numbers into alphabets.

Posted by Nina on Stack Overflow See other posts from Stack Overflow or by Nina
Published on 2011-01-13T16:32:22Z Indexed on 2011/01/17 12:53 UTC
Read the original article Hit count: 264

Filed under:

Hi! i want to convert number into alphabets using javascript e.g. 01=n, 02=i 03=n,04=a and when someone enters the numbers:01020304 in the form he will get like this: nina. or whatever he enters it get replace with equivalent alphabets including spaces. i will be really thankful if you can provide full code including html form code as i am beginner.

Thank you all for quick response. I have found this code in one site it converts alphabets into numbers, but code for converting numbers into alphabets isn't working. here is a code for converting alphabets into numbers:

var i,j;

var getc;

var len;

var num,alpha;

num=new

Array("01","02","03","04","05","06","07","08","09","10","11","12","13","14","15","16","17",

"18","19","20","21","22","23","24","25","26","00","##","$$");

alpha=new

Array("a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","

v","w","x","y","z"," ",".",",");

function encode() { len=document.f1.ta1.value.length; document.f1.ta2.value=""; for(i=0;i

© Stack Overflow or respective owner

Related posts about JavaScript