如何将int
(整数)转换为字符串?我正在尝试制作一个将a的数据struct
转换为字符串以将其保存在文件中的函数。
int
。是的,我知道。这是一个非常常见的捷径,但仍然困扰着我。
如何将int
(整数)转换为字符串?我正在尝试制作一个将a的数据struct
转换为字符串以将其保存在文件中的函数。
int
。是的,我知道。这是一个非常常见的捷径,但仍然困扰着我。
Answers:
编辑: 正如评论中指出的那样,这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系列中的任何运算符来输出数据。
itoa
是不是标准-例如参见stackoverflow.com/questions/190229/...
itoa()
遭受与相同的缓冲区溢出可能性gets()
。
您可以使用sprintf
它来做,或者snprintf
如果有的话:
char str[ENOUGH];
sprintf(str, "%d", 42);
其中的字符数(加上终止字符)str
可以使用以下公式计算:
(int)((ceil(log10(num))+1)*sizeof(char))
ENOUGH
足够我们可以做到这一点malloc(sizeof(char)*(int)log10(num))
(int)log10(42)
是1
。
#define ENOUGH ((CHAR_BIT * sizeof(int) - 1) / 3 + 2)
int length = snprintf(NULL, 0,"%d",42);
获取长度,然后length+1
为字符串分配字符。
简短的答案是:
snprintf( str, size, "%d", x );
较长的是:首先,您需要找到足够的大小。snprintf
告诉您使用NULL, 0
第一个参数调用时的长度:
snprintf( NULL, 0, "%d", x );
为空终止符再分配一个字符。
#include <stdio.h>
#include <stdlib.h>
int x = -42;
int length = snprintf( NULL, 0, "%d", x );
char* str = malloc( length + 1 );
snprintf( str, length + 1, "%d", x );
...
free(str);
如果适用于所有格式字符串,则可以使用来将float或double转换为字符串"%g"
,可以使用来将int转换为十六进制"%x"
,依此类推。
看完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()
并且“这比sprintf快得多”在您的编译器上可能是正确的,但并不总是如此。编译器可能会调查sprintf(str, "%d", 42);
并将其优化为优化的itoa()
类似函数-当然比该用户快。码。
sprintf(str, "%d", 42);
为附加两个const char,但这是理论上的。在实践中,人们不会使用sprintf const ints,并且上面的itoa几乎是尽可能优化的。至少您可以100%确定不会将通用sprintf降级几个数量级。很高兴看到您想到的任何反例,以及编译器的版本和设置。
如果使用的是GCC,则可以使用GNU扩展asprintf函数。
char* str;
asprintf (&str, "%i", 12313);
free(str);
将任何内容转换为字符串都应1)分配结果字符串或2)传递char *
目的地和大小。下面的示例代码:
所有这两种工作int
包括INT_MIN
。它们提供一致的输出snprintf()
,这取决于当前的语言环境。
方法1:NULL
内存不足时返回。
#define INT_DECIMAL_STRING_SIZE(int_type) ((CHAR_BIT*sizeof(int_type)-1)*10/33+3)
char *int_to_string_alloc(int x) {
int i = x;
char buf[INT_DECIMAL_STRING_SIZE(int)];
char *p = &buf[sizeof buf - 1];
*p = '\0';
if (i >= 0) {
i = -i;
}
do {
p--;
*p = (char) ('0' - i % 10);
i /= 10;
} while (i);
if (x < 0) {
p--;
*p = '-';
}
size_t len = (size_t) (&buf[sizeof buf] - p);
char *s = malloc(len);
if (s) {
memcpy(s, p, len);
}
return s;
}
方法2:NULL
如果缓冲区太小,则返回。
static char *int_to_string_helper(char *dest, size_t n, int x) {
if (n == 0) {
return NULL;
}
if (x <= -10) {
dest = int_to_string_helper(dest, n - 1, x / 10);
if (dest == NULL) return NULL;
}
*dest = (char) ('0' - x % 10);
return dest + 1;
}
char *int_to_string(char *dest, size_t n, int x) {
char *p = dest;
if (n == 0) {
return NULL;
}
n--;
if (x < 0) {
if (n == 0) return NULL;
n--;
*p++ = '-';
} else {
x = -x;
}
p = int_to_string_helper(p, n, x);
if (p == NULL) return NULL;
*p = 0;
return dest;
}
[编辑]应@Alter Mann的要求
(CHAR_BIT*sizeof(int_type)-1)*10/33+3
至少是char
将某种带符号整数类型编码为由可选的负号,数字和空字符组成的字符串所需的最大数量。
有符号整数中的非符号位数不超过CHAR_BIT*sizeof(int_type)-1
。n
-bit二进制数的以10为基数的表示形式最多包含n*log10(2) + 1
数字。 10/33
比略多log10(2)
。+1表示符号char
,+ 1表示空字符。可以使用其他分数,例如28/93。
方法3:如果您希望生活在边缘并且缓冲区溢出不是问题,那么可以采用一种简单的C99或更高版本的解决方案来处理所有问题 int
。
#include <limits.h>
#include <stdio.h>
static char *itoa_simple_helper(char *dest, int i) {
if (i <= -10) {
dest = itoa_simple_helper(dest, i/10);
}
*dest++ = '0' - i%10;
return dest;
}
char *itoa_simple(char *dest, int i) {
char *s = dest;
if (i < 0) {
*s++ = '-';
} else {
i = -i;
}
*itoa_simple_helper(s, i) = '\0';
return dest;
}
int main() {
char s[100];
puts(itoa_simple(s, 0));
puts(itoa_simple(s, 1));
puts(itoa_simple(s, -1));
puts(itoa_simple(s, 12345));
puts(itoa_simple(s, INT_MAX-1));
puts(itoa_simple(s, INT_MAX));
puts(itoa_simple(s, INT_MIN+1));
puts(itoa_simple(s, INT_MIN));
}
样品输出
0
1
-1
12345
2147483646
2147483647
-2147483647
-2147483648
/*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;
}
使用函数itoa()
将整数转换为字符串
例如:
char msg[30];
int num = 10;
itoa(num,msg,10);
printf
或它的一个堂兄应该做到这一点