<legend id='Q9GGI'><style id='Q9GGI'><dir id='Q9GGI'><q id='Q9GGI'></q></dir></style></legend>
<tfoot id='Q9GGI'></tfoot>
      <i id='Q9GGI'><tr id='Q9GGI'><dt id='Q9GGI'><q id='Q9GGI'><span id='Q9GGI'><b id='Q9GGI'><form id='Q9GGI'><ins id='Q9GGI'></ins><ul id='Q9GGI'></ul><sub id='Q9GGI'></sub></form><legend id='Q9GGI'></legend><bdo id='Q9GGI'><pre id='Q9GGI'><center id='Q9GGI'></center></pre></bdo></b><th id='Q9GGI'></th></span></q></dt></tr></i><div id='Q9GGI'><tfoot id='Q9GGI'></tfoot><dl id='Q9GGI'><fieldset id='Q9GGI'></fieldset></dl></div>
        <bdo id='Q9GGI'></bdo><ul id='Q9GGI'></ul>

      1. <small id='Q9GGI'></small><noframes id='Q9GGI'>

      2. 将整数转换为其等效字符,其中 0 =&gt;a, 1 =&

        时间:2023-09-07
      3. <tfoot id='DHl2m'></tfoot>

        • <bdo id='DHl2m'></bdo><ul id='DHl2m'></ul>
          1. <small id='DHl2m'></small><noframes id='DHl2m'>

            <legend id='DHl2m'><style id='DHl2m'><dir id='DHl2m'><q id='DHl2m'></q></dir></style></legend>

                  <i id='DHl2m'><tr id='DHl2m'><dt id='DHl2m'><q id='DHl2m'><span id='DHl2m'><b id='DHl2m'><form id='DHl2m'><ins id='DHl2m'></ins><ul id='DHl2m'></ul><sub id='DHl2m'></sub></form><legend id='DHl2m'></legend><bdo id='DHl2m'><pre id='DHl2m'><center id='DHl2m'></center></pre></bdo></b><th id='DHl2m'></th></span></q></dt></tr></i><div id='DHl2m'><tfoot id='DHl2m'></tfoot><dl id='DHl2m'><fieldset id='DHl2m'></fieldset></dl></div>

                    <tbody id='DHl2m'></tbody>

                  本文介绍了将整数转换为其等效字符,其中 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 =&gt;a, 1 =&gt;乙等的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:javascript中的非常大的数字 下一篇:JS Number.MAX_SAFE_INTEGER 和 MAX_VALUE 有什么区别?

                  相关文章

                  最新文章

                  <tfoot id='XjSYX'></tfoot>

                  • <bdo id='XjSYX'></bdo><ul id='XjSYX'></ul>
                  <i id='XjSYX'><tr id='XjSYX'><dt id='XjSYX'><q id='XjSYX'><span id='XjSYX'><b id='XjSYX'><form id='XjSYX'><ins id='XjSYX'></ins><ul id='XjSYX'></ul><sub id='XjSYX'></sub></form><legend id='XjSYX'></legend><bdo id='XjSYX'><pre id='XjSYX'><center id='XjSYX'></center></pre></bdo></b><th id='XjSYX'></th></span></q></dt></tr></i><div id='XjSYX'><tfoot id='XjSYX'></tfoot><dl id='XjSYX'><fieldset id='XjSYX'></fieldset></dl></div>

                    1. <legend id='XjSYX'><style id='XjSYX'><dir id='XjSYX'><q id='XjSYX'></q></dir></style></legend>

                      <small id='XjSYX'></small><noframes id='XjSYX'>