JavaScript 中的二进制到原始字符串转换
我们需要编写一个 JavaScript 函数,该函数将输入一个表示二进制代码的字符串。该函数应返回字符串的字母表示法。
例如 -
如果二进制输入字符串为 -
const str = '1001000 1100101 1101100 1101100 1101111 100000 1010111 1101111 1110010 1101100 1100100';
那么输出应该是 -
const output = 'Hello World';
示例
此代码将为 -
const str = '1001000 1100101 1101100 1101100 1101111 100000 1010111 1101111 1110010 1101100 1100100'; const binaryToString = (binary = '') => { let strArr = binary.split(' '); const str = strArr.map(part => { return String.fromCharCode(parseInt(part, 2)); }).join(''); return str; }; console.log(binaryToString(str));
输出
控制台中的输出将为 -
Hello World
广告