Convert numeric characters to alphabetic characters

前端 未结 5 1370
日久生厌
日久生厌 2021-01-02 16:12

I am trying to get I/O as follows:

Input : 123490
Output : BCDEJA

Logic is simple:

if
strarr(i)=0,1,2

5条回答
  •  感情败类
    2021-01-02 16:55

    =CHAR(64 + 1)
    will Give "A"
    =CHAR(64 + 2)
    will Give "B" 
    =CHAR(64 + 3)
    will Give "C" 
    
    so on.....
    

提交回复
热议问题