Convert integer into its character equivalent, where 0 =gt; a, 1 =gt; b, etc(将整数转换为其等效字符,其中 0 =gt;a, 1 =gt;乙等)
问题描述
我想根据字母表将整数转换为其等效字符.例如:
I want to convert an integer into its character equivalent based on the alphabet. For example:
0 => a
1 => b
2 => c
3 => d
等等.我可以构建一个数组并在需要时查找它,但我想知道是否有内置函数可以为我执行此操作.我通过 Google 找到的所有示例都使用 ASCII 值,而不是字符在字母表中的位置.
etc. I could build an array and just look it up when I need it but I’m wondering if there’s a built in function to do this for me. All the examples I’ve found via Google are working with ASCII values and not a character’s position in the alphabet.
推荐答案
假设你想要小写字母:
var chr = String.fromCharCode(97 + n); // where n is 0, 1, 2 ...
97 是小写a"的 ASCII 码.如果需要大写字母,请将 97 替换为 65(大写A").请注意,如果 n >25
,你会跳出字母范围.
97 is the ASCII code for lower case 'a'. If you want uppercase letters, replace 97 with 65 (uppercase 'A'). Note that if n > 25
, you will get out of the range of letters.
这篇关于将整数转换为其等效字符,其中 0 =>a, 1 =>乙等的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:将整数转换为其等效字符,其中 0 =>a, 1 =>乙等


基础教程推荐
- 我可以在浏览器中与Babel一起使用ES模块,而不捆绑我的代码吗? 2022-01-01
- Chart.js 在线性图表上拖动点 2022-01-01
- html表格如何通过更改悬停边框来突出显示列? 2022-01-01
- 自定义 XMLHttpRequest.prototype.open 2022-01-01
- Electron 将 Node.js 和 Chromium 上下文结合起来意味着 2022-01-01
- 直接将值设置为滑块 2022-01-01
- 如何使用JIT在顺风css中使用布局变体? 2022-01-01
- 用于 Twitter 小部件宽度的 HTML/CSS 2022-01-01
- Vue 3 – <过渡>渲染不能动画的非元素根节点 2022-01-01
- 如何使用TypeScrip将固定承诺数组中的项设置为可选 2022-01-01