用 JavaScript 将字符串映射到数字
我们需要编写一个 JavaScript 函数来接收一个字符串。它应该打印字符串中每个对应字母的数字。
例如
a = 1 b = 2 c = 3 d = 4 e =5 . . . y = 25 z = 25
注意:去除所有特殊字符和空格。
因此,如果输入为 −
"hello man"
则输出应为 −
"8,5,12,12,15,13,1,14"
示例
代码如下 −
const str = 'hello man'; const charPosition = str => { str = str.split(''); const arr = []; const alpha = /^[A-Za-z]+$/; for(i=0; i < str.length; i++){ if(str[i].match(alpha)){ const num = str[i].charCodeAt(0) - 96; arr.push(num); }else{ continue; }; }; return arr.toString(); } console.log(charPosition(str));
输出
控制台中的输出为 −
"8,5,12,12,15,13,1,14"
广告