gpt4 book ai didi

c - 在C中将一个字符串包含到另一个字符串中

转载 作者:行者123 更新时间:2023-12-04 10:16:03 25 4
gpt4 key购买 nike

如何在 C 中将一个字符串“包含”到另一个字符串中?

这是一个例子:

string1 = "www.google";
string2 = "http://"+string1+".com";

我在使用 strcat() 时遇到困难。

谢谢

最佳答案

如果有可用空间,您可以使用 snprintf 及其功能返回所需的大小:

const char *string1 = "www.google";
char *string2;
size_t length;

length = snprintf(NULL, 0, "http://%s.com", string1);
if (length < 0) {
// Handle error.
} else {
string2 = malloc(length + 1);
snprintf(string2, length + 1, "http://%s.com", string1);
}

略有不同的变体避免了两次格式字符串:

const char *string1 = "www.google";
const char *format = "http://%s.com";
char *string2;
size_t length;

length = snprintf(NULL, 0, format, string1);
if (length < 0) {
// Handle error.
} else {
string2 = malloc(length + 1);
snprintf(string2, length + 1, format, string1);
}

关于c - 在C中将一个字符串包含到另一个字符串中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9144106/

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