const char *连接

时间:2010-01-03 14:02:58

标签: c++ c string-concatenation

我需要连接两个这样的const字符:

const char *one = "Hello ";
const char *two = "World";

我该怎么做呢?

我从具有C接口的第三方库中传递了这些char*,因此我不能简单地使用std::string

12 个答案:

答案 0 :(得分:94)

在您的示例中,一个两个是char指针,指向char常量。您无法更改这些指针指向的char常量。所以像:

strcat(one,two); // append string two to string one.

不起作用。相反,你应该有一个单独的变量(char数组)来保存结果。像这样:

char result[100];   // array to hold the result.

strcpy(result,one); // copy string one into the result.
strcat(result,two); // append string two to the result.

答案 1 :(得分:71)

C路:

char buf[100];
strcpy(buf, one);
strcat(buf, two);

C ++方式:

std::string buf(one);
buf.append(two);

编译时方式:

#define one "hello "
#define two "world"
#define concat(first, second) first second

const char* buf = concat(one, two);

答案 2 :(得分:30)

如果您使用的是C ++,为什么不使用std::string而不是C风格的字符串?

std::string one="Hello";
std::string two="World";

std::string three= one+two;

如果您需要将此字符串传递给C函数,只需传递three.c_str()

即可

答案 3 :(得分:19)

使用std::string

#include <string>

std::string result = std::string(one) + std::string(two);

答案 4 :(得分:16)

更新:已更改     string total = string(one) + string(two); 由于性能原因导致string total( string(one) + two );(避免构造字符串2和临时字符串总数)

const char *one = "Hello ";
const char *two = "World";

string total( string(one) + two );    // OR: string total = string(one) + string(two);
// string total(move(move(string(one)) + two));  // even faster?

// to use the concatenation in const char* use
total.c_str()

答案 5 :(得分:7)

又一个例子:

// calculate the required buffer size (also accounting for the null terminator):
int bufferSize = strlen(one) + strlen(two) + 1;

// allocate enough memory for the concatenated string:
char* concatString = new char[ bufferSize ];

// copy strings one and two over to the new buffer:
strcpy( concatString, one );
strcat( concatString, two );

...

// delete buffer:
delete[] concatString;

但除非您特别不想或不能使用C ++标准库,否则使用std::string可能更安全。

答案 6 :(得分:5)

首先,您必须创建一些动态内存空间。然后你可以将两个字符串strcat到它中。或者您可以使用c ++“string”类。老派的C方式:

  char* catString = malloc(strlen(one)+strlen(two)+1);
  strcpy(catString, one);
  strcat(catString, two);
  // use the string then delete it when you're done.
  free(catString);

新C ++方式

  std::string three(one);
  three += two;

答案 7 :(得分:5)

您似乎正在将C ++与C库一起使用,因此您需要使用const char *

我建议将const char *包装到std::string

const char *a = "hello "; 
const char *b = "world"; 
std::string c = a; 
std::string d = b; 
cout << c + d;

答案 8 :(得分:5)

如果你不知道字符串的大小,你可以这样做:

#include <stdio.h>
#include <string.h>
#include <stdlib.h>

int main(){
    const char* q1 = "First String";
    const char* q2 = " Second String";

    char * qq = (char*) malloc((strlen(q1)+ strlen(q2))*sizeof(char));
    strcpy(qq,q1);
    strcat(qq,q2);

    printf("%s\n",qq);

    return 0;
}

答案 9 :(得分:3)

您可以使用strstream。它已被正式弃用,但如果您需要使用C字符串,它仍然是一个很棒的工具,我认为。

char result[100]; // max size 100
std::ostrstream s(result, sizeof result - 1);

s << one << two << std::ends;
result[99] = '\0';

这会将one然后two写入流中,并使用\0附加终止std::ends。如果两个字符串最终都能写出99个字符 - 那么就不会留下写\0的空格 - 我们会在最后一个位置手动编写一个字符。

答案 10 :(得分:3)

const char* one = "one";
const char* two = "two";
char result[40];
sprintf(result, "%s%s", one, two);

答案 11 :(得分:0)

在动态分配内存时不使用strcpy命令连接两个常量字符指针:

const char* one = "Hello ";
const char* two = "World!";

char* three = new char[strlen(one) + strlen(two) + 1] {'\0'};

strcat_s(three, strlen(one) + 1, one);
strcat_s(three, strlen(one) + strlen(two) + 1, two);

cout << three << endl;

delete[] three;
three = nullptr;