如何将整型(整数)转换为字符串?
我试图使一个函数转换成一个字符串的结构数据保存在文件中。
如何将整型(整数)转换为字符串?
我试图使一个函数转换成一个字符串的结构数据保存在文件中。
当前回答
还有另一种方法。
#include <stdio.h>
#define atoa(x) #x
int main(int argc, char *argv[])
{
char *string = atoa(1234567890);
printf("%s\n", string);
return 0;
}
其他回答
在查看了gcc的各种版本的itoa之后,我发现能够处理二进制、十进制和十六进制(正数和负数)转换的最灵活的版本是在http://www.strudel.org.uk/itoa/上找到的第四个版本。虽然sprintf/snprintf有优势,但除了十进制转换外,它们不能处理负数。由于上面的链接要么离线要么不再活跃,我在下面列出了他们的第4个版本:
/**
* C++ version 0.4 char* style "itoa":
* Written by Lukás Chmela
* Released under GPLv3.
*/
char* itoa(int value, char* result, int base) {
// check that the base if valid
if (base < 2 || base > 36) { *result = '\0'; return result; }
char* ptr = result, *ptr1 = result, tmp_char;
int tmp_value;
do {
tmp_value = value;
value /= base;
*ptr++ = "zyxwvutsrqponmlkjihgfedcba9876543210123456789abcdefghijklmnopqrstuvwxyz" [35 + (tmp_value - value * base)];
} while ( value );
// Apply negative sign
if (tmp_value < 0) *ptr++ = '-';
*ptr-- = '\0';
while(ptr1 < ptr) {
tmp_char = *ptr;
*ptr--= *ptr1;
*ptr1++ = tmp_char;
}
return result;
}
你可以用sprintf来做,如果你有snprintf也可以:
char str[ENOUGH];
sprintf(str, "%d", 42);
str中的字符数(加上终止字符)可以使用以下方法计算:
(int)((ceil(log10(num))+1)*sizeof(char))
如果您正在使用GCC,您可以使用GNU扩展asprintf函数。
char* str;
asprintf(&str, "%i", 12313);
free(str);
正如评论中指出的,itoa()不是标准,所以最好使用竞争对手回答中建议的sprintf()方法!
可以使用itoa()函数将整数值转换为字符串。
这里有一个例子:
int num = 321;
char snum[5];
// Convert 123 to string [buf]
itoa(num, snum, 10);
// Print our string
printf("%s\n", snum);
如果你想把你的结构输出到一个文件中,不需要事先转换任何值。您可以只使用printf格式规范来指示如何输出值,并使用printf系列中的任何操作符来输出数据。
/*Function return size of string and convert signed *
*integer to ascii value and store them in array of *
*character with NULL at the end of the array */
int itoa(int value,char *ptr)
{
int count=0,temp;
if(ptr==NULL)
return 0;
if(value==0)
{
*ptr='0';
return 1;
}
if(value<0)
{
value*=(-1);
*ptr++='-';
count++;
}
for(temp=value;temp>0;temp/=10,ptr++);
*ptr='\0';
for(temp=value;temp>0;temp/=10)
{
*--ptr=temp%10+'0';
count++;
}
return count;
}