Изменение строки - PullRequest
       11

Изменение строки

1 голос
/ 27 марта 2009

Я использую Linux GCC c99.

Мне интересно, какой будет лучшая техника. Чтобы изменить строку. Я использую strstr ();

У меня есть имя файла «file.vce», и я хочу изменить расширение на «file.wav».

Это лучший метод:

char file_name[80] = "filename.vce";
char *new_file_name = NULL;
new_file_name = strstr(file_name, "vce");
strncpy(new_file_name, "wav", 3);
printf("new file name: %s\n", new_file_name);
printf("file name: %s\n", file_name);

Большое спасибо за любой совет,


Я отредактировал свой ответ, используя ваши предложения. Вы видите что-то еще не так?

/** Replace the file extension .vce with .wav */
void replace_file_extension(char *file_name)
{
    char *p_extension;

    /** Find the extension .vce */
    p_extension = strrchr(file_name, '.');
    if(p_extension)
    {
        strcpy(++p_extension, "wav");
    }
    else
    {
        /** Filename did not have the .vce extension */
        /** Display debug information */
    }
}

int main(void)
{
    char filename[80] = "filename.vce";

    replace_file_extension(filename);

    printf("filename: %s\n", filename);
    return 0;
}

Ответы [ 6 ]

3 голосов
/ 27 марта 2009

Есть несколько проблем с:

char file_name[80] = "filename.vce";
char *new_file_name = NULL;
new_file_name = strstr(file_name, "vce");
strncpy(new_file_name, "wav", 3);
printf("new file name: %s\n", new_file_name);
printf("file name: %s\n", file_name);

Существует только хранилище для одной строки, но в конце вы пытаетесь напечатать две разные строки.

Переменная с именем new_file_name фактически указывает на часть того же имени файла.

Строка vce может встречаться где угодно внутри имени файла, а не только как расширение. Что если имя файла было srvce.vce?

Вы, вероятно, хотите найти последнее. символ в строке, затем проверьте, следует ли за ним ожидаемое расширение, а затем замените это расширение. И помните, что если вы сделаете это, изменив исходный буфер, вы не сможете впоследствии распечатать старую строку.

2 голосов
/ 27 марта 2009

Вместо поиска. или vce, любой из которых может появляться в строке несколько раз, вычислить длину строки и вычесть 3, чтобы указать на расширение. Замените расширение на месте, используя strncpy.

size_t length;
char* pextension;
char file_name[80] = "filename.vce";
printf("file name: %s\n", file_name);    
length = strlen(file_name);
pextension = file_name + length - 3;
strncpy(pextension, "wav", 3);
printf("new file name: %s\n", file_name);
1 голос
/ 27 марта 2009

Мне скучно, и вместо того, чтобы указывать на проблемы в исходном коде, я написал свой собственный. Я пытался держать это в чистоте для поучительных целей.

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


/* Replace the last suffix in a filename with a new suffix. Copy the new
   name to a new string, allocated with malloc. Return new string. 
   Caller MUST free new string.

   If old name has no suffix, a period and the new suffix is appended
   to it. The new suffix MUST include a period it one is desired.

   Slashes are interepreted to separate directories in the filename.
   Suffixes are only looked after the last slash, if any.

   */
char *replace_filename_suffix(const char *pathname, const char *new_suffix)
{
    size_t new_size;
    size_t pathname_len;
    size_t suffix_len;
    size_t before_suffix;
    char *last_slash;
    char *last_period;
    char *new_name;

    /* Allocate enough memory for the resulting string. We allocate enough
       for the worst case, for simplicity. */
    pathname_len = strlen(pathname);
    suffix_len = strlen(new_suffix);
    new_size = pathname_len + suffix_len + 1;
    new_name = malloc(new_size);
    if (new_name == NULL)
        return NULL;

    /* Compute the number of characters to copy from the old name. */
    last_slash = strrchr(pathname, '/');
    last_period = strrchr(pathname, '.');
    if (last_period && (!last_slash || last_period > last_slash))
        before_suffix = last_period - pathname;
    else
        before_suffix = pathname_len;

    /* Copy over the stuff before the old suffix. Then append a period
       and the new suffix. */
#if USE_SPRINTF
    /* This uses snprintf, which is how I would normally do this. The
       %.*s formatting directive is used to copy a specific amount
       of text from pathname. Note that this has the theoretical
       problem with filenames larger than will fit into an integer. */
    snprintf(new_name, new_size, "%.*s%s", (int) before_suffix, pathname,
             new_suffix);
#else
    /* This uses memcpy and strcpy, to demonstrate how they might be
       used instead. Much C string processing needs to be done with
       these low-level tools. */
    memcpy(new_name, pathname, before_suffix);
    strcpy(new_name + before_suffix, new_suffix);
#endif

    /* All done. */
    return new_name;
}


int main(int argc, char **argv)
{
    int i;
    char *new_name;

    for (i = 1; i + 1 < argc; ++i) {
        new_name = replace_filename_suffix(argv[i], argv[i+1]);
        if (new_name == NULL) {
            perror("replace_filename_suffix");
            return EXIT_FAILURE;
        }
        printf("original: %s\nsuffix: %s\nnew name: %s\n",
               argv[i], argv[i+1], new_name);
        free(new_name);
    }
    return 0;
}
1 голос
/ 27 марта 2009

Я бы сделал это

char file_name[80] = "filename.vce";
char *pExt;

pExt = strrchr(file_name, ".");
if( pExt )
  strcpy(++pExt, "wav");
else
{
 // hey no extension
}
printf("file name: %s\n", file_name);

Вы ДОЛЖНЫ выполнять манипуляции с указателями в каждой программе на языке c. Конечно, вы бы сделали еще несколько проверок на предмет превышения буфера и т.д. или даже использовали бы функции, специфичные для пути.

1 голос
/ 27 марта 2009

Есть несколько проблем с вашим кодом. Вот другой вариант, с внесенными изменениями:

char file_name[80] = "filename.vce";
char *new_file_name = NULL;

printf("old file name: '%s'\n", file_name);
/* Use strrstr(), to find the last occurance, and include the period. */
new_file_name = strrstr(file_name, ".vce");
if(new_file_name != NULL)
{
  /* Use plain strcpy() to make sure the terminator gets there.
   * Don't forget the period.
  */
  strcpy(new_file_name, ".wav");
}
printf("new file name: '%s'\n", file_name);

Это еще можно улучшить, например, он не проверяет, достаточно ли места для добавления нового расширения. Но это действительно завершает строку, чуть более естественным способом, чем тыкать в отдельные символы.

1 голос
/ 27 марта 2009

Вы должны вручную добавить нулевой терминатор в конце new_file_name, потому что strncpy() не добавит его в вашем случае.

Просто так получилось, что у вас уже есть нулевой байт в нужном месте, но это не может быть гарантировано во всех ситуациях, поэтому это хорошая привычка делать такие вещи как

new_file_name[3] = '\0';

после strncpy().

Также помните, что строка «vce» может появиться внутри имени файла.

...