gpt4 book ai didi

c++ - 如何在运行时更改格式说明符的值?

转载 作者:太空宇宙 更新时间:2023-11-04 00:38:40 25 4
gpt4 key购买 nike

我在我的项目中使用 sscanf 将字符串从源缓冲区复制到目标缓冲区。例如:

char* target;
target = (char*)malloc(100 * sizeof(char));
char* source = "Hello World";
sscanf(source, "%[^\t\n]", target); // trying to copy "Hello World" into target.
printf("%s\n", target);//this will print "Hello World".

但是这种编码风格是不被接受的。我的经理希望我做的是:

sscanf(source, "%11[^\t\n]", target); // NOTE: I've written "%11". here, 11 == length of hello world.

也就是说,他希望我也提供格式说明符。 (在这种情况下为 %11)。

但是,问题是源的长度可能不同,我不知道如何为每个不同长度的字符串编写正确的格式说明符。

最佳答案

使用:

sscanf(source, "%*[^\t\n]", maxlen, target)

其中 maxlen 是您要读取的大小。

似乎没有简单的方法可以为 sscanf 制作格式字符串(或其任何 sibling )采用输入字符串的任意最大长度。该建议基于 printf正交于 scanf ,事实并非如此。

您可能会发现使用 strtok 运气更好或者 strncpystrdup复制 token 。

但是,既然打上了C++的标签,为什么不使用:

std::stringstream ss(source);  
std::string target;
getline(ss, target, "\t");

关于c++ - 如何在运行时更改格式说明符的值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18401753/

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