在C中连接char数组

时间:2010-02-07 20:51:13

标签: c string arrays

我有一个char数组:

char* name = "hello";

我想为该名称添加一个扩展名以使其成为

hello.txt

我该怎么做?

name += ".txt"无效

8 个答案:

答案 0 :(得分:53)

查看strcat功能。

特别是,你可以试试这个:

const char* name = "hello";
const char* extension = ".txt";

char* name_with_extension;
name_with_extension = malloc(strlen(name)+1+4); /* make space for the new string (should check the return value ...) */
strcpy(name_with_extension, name); /* copy name into the new var */
strcat(name_with_extension, extension); /* add the extension */

答案 1 :(得分:17)

  

我有一个char数组:

char* name = "hello";

不,你有一个指向string literal的字符指针。在许多用法中,您可以添加const修饰符,具体取决于您是否对 name 指向的内容更感兴趣,还是字符串值“ hello ”。您不应该尝试修改文字(“hello”),因为bad things can happen

要传达的主要内容是C没有正确的(或第一类)字符串类型。 “字符串”通常是字符(字符)数组,带有终止空('\ 0'或十进制0)字符,表示字符串的结尾,或指向字符数组的指针。

我建议阅读 C语言(第28页第二版)中的字符数组,第1.9节。我强烈建议您阅读这本小书(<300页),以便学习C.

除了您的问题之外,Arrays and Pointers的第6部分 - Characters and Strings和第8部分 - C FAQ可能有所帮助。问题6.58.4可能是开始的好地方。

我希望这可以帮助您理解为什么您的摘录不起作用。其他人已经概述了使其发挥作用所需的变化。基本上你需要一个char数组(一个字符数组),它足以存储整个字符串的终止(结束)'\ 0'字符。然后你可以使用标准的C库函数strcpy(或者更好的strncpy)将“Hello”复制到其中,然后你想使用标准的C库strcat(或更好的strncat)函数进行连接。您需要包含string.h头文件以声明函数声明。

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

int main( int argc, char *argv[] )
{
    char filename[128];
    char* name = "hello";
    char* extension = ".txt";

    if (sizeof(filename) < strlen(name) + 1 ) { /* +1 is for null character */
        fprintf(stderr, "Name '%s' is too long\n", name);
        return EXIT_FAILURE;
    }
    strncpy(filename, name, sizeof(filename));

    if (sizeof(filename) < (strlen(filename) + strlen(extension) + 1) ) {
        fprintf(stderr, "Final size of filename is too long!\n");
        return EXIT_FAILURE;
    }
    strncat(filename, extension, (sizeof(filename) - strlen(filename)) );
    printf("Filename is %s\n", filename);

    return EXIT_SUCCESS;
}

答案 2 :(得分:11)

首先使用strcpy将当前字符串复制到更大的数组,然后使用strcat

例如,你可以这样做:

char* str = "Hello";
char dest[12];

strcpy( dest, str );
strcat( dest, ".txt" );

答案 3 :(得分:5)

您可以在此处复制并粘贴答案,或者您可以阅读主持人Joel对strcat所说的内容。

答案 4 :(得分:5)

asprintf不是100%标准,但它可以通过GNU和BSD标准C库获得,所以你可能拥有它。它分配输出,因此您不必坐在那里计算字符。

char *hi="Hello";
char *ext = ".txt";
char *cat;

asprintf(&cat, "%s%s", hi, ext);

答案 5 :(得分:1)

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

char *name = "hello";

int main(void) {
  char *ext = ".txt";
  int len   = strlen(name) + strlen(ext) + 1;
  char *n2  = malloc(len);
  char *n2a = malloc(len);

  if (n2 == NULL || n2a == NULL)
    abort();

  strlcpy(n2, name, len);
  strlcat(n2, ext, len);
  printf("%s\n", n2);

  /* or for conforming C99 ...  */
  strncpy(n2a, name, len);
  strncat(n2a, ext, len - strlen(n2a));
  printf("%s\n", n2a);

  return 0; // this exits, otherwise free n2 && n2a
}

答案 6 :(得分:0)

您可以使用sprintf()函数来连接字符串。以您的情况为例,

!

然后您将在“文件”中包含连接字符串。

答案 7 :(得分:0)

在极少数情况下,您不能使用 strncatstrcatstrcpy。而且您无权访问 <string.h>,因此您无法使用 strlen。此外,您甚至可能不知道 char 数组的大小,并且您仍然想要连接,因为您只有指针。好吧,你可以做老式的 malloc 并自己计算字符......

char *combineStrings(char* inputA, char* inputB) {
    size_t len = 0, lenB = 0;
    while(inputA[len] != '\0') len++;
    while(inputB[lenB] != '\0') lenB++;
    char* output = malloc(len+lenB);
    sprintf((char*)output,"%s%s",inputA,inputB);
    return output;
}

它只需要#include <stdio.h>,您很可能已经包含了