溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

C語言字符串替換操作在C中的實(shí)現(xiàn)

發(fā)布時間:2024-08-30 12:09:44 來源:億速云 閱讀:95 作者:小樊 欄目:編程語言

在C語言中,字符串替換操作可以通過自定義函數(shù)來實(shí)現(xiàn)

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

char *str_replace(const char *str, const char *old, const char *new) {
    char *result;
    int i, count = 0;
    int newlen = strlen(new);
    int oldlen = strlen(old);

    for (i = 0; str[i] != '\0'; i++) {
        if (strncmp(&str[i], old, oldlen) == 0) {
            count++;
            i += oldlen - 1;
        }
    }

    result = (char *)malloc(i + count * (newlen - oldlen) + 1);
    if (result == NULL) {
        printf("Memory allocation failed.\n");
        exit(1);
    }

    i = 0;
    while (*str) {
        if (strncmp(str, old, oldlen) == 0) {
            strcpy(&result[i], new);
            i += newlen;
            str += oldlen;
        } else {
            result[i++] = *str++;
        }
    }

    result[i] = '\0';
    return result;
}

int main() {
    const char *str = "Hello, world!";
    const char *old = "world";
    const char *new = "C Language";

    char *replaced = str_replace(str, old, new);
    printf("Original string: %s\n", str);
    printf("Replaced string: %s\n", replaced);

    free(replaced);
    return 0;
}

這個程序首先定義了一個名為str_replace的函數(shù),該函數(shù)接受三個參數(shù):原始字符串str、需要被替換的子字符串old和用于替換的新子字符串new。函數(shù)首先計(jì)算替換后的字符串長度,然后為結(jié)果字符串分配內(nèi)存。接下來,函數(shù)遍歷原始字符串,將不需要替換的部分復(fù)制到結(jié)果字符串中,并在遇到需要替換的子字符串時進(jìn)行替換。最后,函數(shù)返回結(jié)果字符串。

main函數(shù)中,我們使用str_replace函數(shù)替換字符串中的"world"為"C Language",并輸出原始字符串和替換后的字符串。注意,我們需要在程序結(jié)束時釋放由str_replace函數(shù)分配的內(nèi)存。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI