JavaScript 字符串转int数组

发布于 2024-10-17 07:58:08 字数 345 浏览 0 评论 0原文

var result ="1fg";
for(i =0; i < result.length; i++){
  var chr = result.charAt(i);
  var hexval = chr.charCodeAt(chr)
  document.write(hexval + " ");
}

这给出了 NaN 102 103。

可能是因为它将“1”视为整数或类似的东西。有什么方法可以转换 “1”->字符串到正确的整数?在本例中:49。

所以它将是

49 102 103 而不是 NaN 102 103

干杯,

蒂莫

var result ="1fg";
for(i =0; i < result.length; i++){
  var chr = result.charAt(i);
  var hexval = chr.charCodeAt(chr)
  document.write(hexval + " ");
}

This gives NaN 102 103.

Probably because it's treating the "1" as a integer or something like that. Is there a way I can convert the
"1"->string to the correct integer? In this case: 49.

So it will be

49 102 103 instead of NaN 102 103

Cheers,

Timo

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梦晓ヶ微光ヅ倾城 2024-10-24 07:58:08

charCodeAt 函数采用索引,而不是字符串。

当你向它传递一个字符串时,它会尝试将字符串转换为数字,如果不能,则使用 0

您的第一次迭代调用 '1'.charCodeAt('1')。它将把 '1' 解析为数字,并尝试获取字符串中的第二个字符代码。由于该字符串只有一个字符,即 NaN

您的第二次迭代调用 'f'.charCodeAt('f')。由于 'f' 无法解析为数字,因此它将被解释为 0,这将为您提供第一个字符代码。


您应该编写 var hexval = result.charCodeAt(i) 来获取原始字符串中给定位置的字符代码。

您还可以编写 var hexval = chr.charCodeAt(0) 来获取 chr 字符串中单个字符的字符代码。

The charCodeAt function takes an index, not a string.

When you pass it a string, it will try to convert the string to a number, and use 0 if it couldn't.

Your first iteration calls '1'.charCodeAt('1'). It will parse '1' as a number and try to get the second character code in the string. Since the string only has one character, that's NaN.

Your second iteration calls 'f'.charCodeAt('f'). Since 'f' cannot be parsed as a number, it will be interpreted as 0, which will give you the first character code.


You should write var hexval = result.charCodeAt(i) to get the character code at the given position in the original string.

You can also write var hexval = chr.charCodeAt(0) to get the character code of the single character in the chr string.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文