gpt4 book ai didi

c++ - 使用它们的 ascii 值将 char 数组中的多个 ascii 字符转换为单个 int --- c/c++

转载 作者:太空狗 更新时间:2023-10-29 19:40:01 25 4
gpt4 key购买 nike

有人知道进行这种转换的好方法吗?

例如,以包含 ascii 字符“ABC”的 char 数组为例,我正在寻找的 int 转换会将这些字符更改为值为 656667 的单个 int。

如有任何帮助,我们将不胜感激。

编辑非常感谢您的答复。正如有人指出的那样,我确实说过 char 数组,特别是这是一个字节数组,因此可能有多个 '\0' 或 NULL 元素,后跟附加的 ascii。使用 strlen 等方法会导致问题。再次感谢当前的输入。

最佳答案

在 C 中:

#include <stdio.h>
#include <string.h>

int main(){
char start[]="ABC";
char output[100];
int i;
char* output_start=output;
for(i=0;i<3;i++){
output_start+=sprintf(output_start,"%d",start[i]);
}
printf("%s\n",output);
}

这使用 sprintf 函数将每个字符单独打印成一个字符串。如果 char 的 ASCII 值不总是两位数,这可以避免其他方法可能出现的问题。

编辑:根据您的最新更新,您可能希望使用 %u 而不是 %d

关于c++ - 使用它们的 ascii 值将 char 数组中的多个 ascii 字符转换为单个 int --- c/c++,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2201918/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com