gpt4 book ai didi

c - 当字符串的长度大于 n 时,如何打印字符串的前 n 个字节?

转载 作者:太空狗 更新时间:2023-10-29 16:45:55 26 4
gpt4 key购买 nike

所以我有一个具有一定字节数(或长度)的字符串。我说字节是因为字符串末尾没有 NULL 终止符。虽然,我知道字符串有多长。通常,正如我们所知,当您 printf("%s", str); 时,它将继续打印每个字节,直到它到达 NULL 字符。我知道没有不是 NULL 终止的 C 字符串,但我有一个奇怪的情况,我正在存储东西(不是特定的字符串)并且我不存储 NULL,而是“东西”的长度。

这是一个小例子:

char* str = "Hello_World"; //Let's use our imagination and pretend this doesn't have a NULL terminator after the 'd' in World
long len = 5;

//Print the first 'len' bytes (or char's) of 'str'

我知道你可以这样做:

printf("%.5s", str);

但是在这种情况下,我很难将 5 编码到其中,尽管在我的情况下,5 是在一个变量中。我会做这样的事情:

printf("%.(%l)s", len, str);

但我知道你不能那样做。但是让您了解我要完成的任务。

最佳答案

printf("%.*s", len, str);

而且,没有不是 NULL 终止的 C 字符串。

关于c - 当字符串的长度大于 n 时,如何打印字符串的前 n 个字节?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15376765/

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