gpt4 book ai didi

C 格式字符串 - 如何使用 sprintf 将前导零添加到字符串值?

转载 作者:行者123 更新时间:2023-11-30 20:34:05 25 4
gpt4 key购买 nike

我想在字符串的开头添加零。我正在使用格式说明符。我的输入字符串是 hello我希望输出为 000hello

我知道如何对整数执行此操作。

int main()
{
int i=232;
char str[21];
sprintf(str,"%08d",i);

printf("%s",str);

return 0;
}

OUTPUT will be -- 00000232

如果我对字符串做同样的事情。

 int main()
{
char i[]="hello";
char str[21];
sprintf(str,"%08s",i);

printf("%s",str);

return 0;
}

OUTPUT will be - hello (with 3 leading space)

为什么在字符串的情况下给出空格,在整数的情况下给出零?

最佳答案

How to add leading zeros to string value using sprintf?

使用"%0*d%s"在前面添加零。

"%0*d" --> 0 零的最小宽度,* 从参数列表导出的宽度, d 打印一个 int

字符串前面不需要零时,需要异常(exception)。

void PrependZeros(char *dest, const char *src, unsigned width) {
size_t len = strlen(src);
if (len >= width) strcpy(dest, src);
else sprintf(dest, "%0*d%s", (int) (width - len), 0, src);
}
<小时/>

但我不认为 sprintf() 是完成这项工作的正确工具,并且代码如下。

// prepend "0" as needed resulting in a string of _minimal_ width.
void PrependZeros(char *dest, const char *src, unsigned minimal_width) {
size_t len = strlen(src);
size_t zeros = (len > minimal_width) ? 0 : minimal_width - len;
memset(dest, '0', zeros);
strcpy(dest + zeros, src);
}
<小时/>
void testw(const char *src, unsigned width) {
char dest[100];
PrependZeros(dest, src, width);
printf("%u <%s>\n", width, dest);
}

int main() {
for (unsigned w = 0; w < 10; w++)
testw("Hello", w);
for (unsigned w = 0; w < 2; w++)
testw("", w);
}

输出

0 <Hello>
1 <Hello>
2 <Hello>
3 <Hello>
4 <Hello>
5 <Hello>
6 <0Hello>
7 <00Hello>
8 <000Hello>
9 <0000Hello>
0 <>
1 <0>

关于C 格式字符串 - 如何使用 sprintf 将前导零添加到字符串值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43354488/

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