12-09
12-09
12-09
12-09
12-09
12-09
12-09
12-09
12-09
12-09
12-09
12-09
12-09
12-09
12-09
12-09
12-09
12-09
12-09
12-09
12-09
12-09
12-09
12-09
要替换字符串中的指定字符,可以使用循环遍历字符串,将指定字符替换为需要的字符。下面是一个示例代码:#include <stdio.h>#include <string.h>void replaceChar(char *str, cha
以下为本文的正文内容,请查阅,本站为公益性网站,复制本文以及下载DOC文档全部免费。
要替换字符串中的指定字符,可以使用循环遍历字符串,将指定字符替换为需要的字符。下面是一个示例代码:
#include <stdio.h>#include <string.h>void replaceChar(char *str, char oldChar, char newChar) {int len = strlen(str);for (int i = 0; i < len; i++) {if (str[i] == oldChar) {str[i] = newChar;}}}int main() {char str[] = "hello, world!";char oldChar = 'o';char newChar = '*';printf("Original string: %s\n", str);replaceChar(str, oldChar, newChar);printf("Modified string: %s\n", str);return 0;}
在上面的代码中,replaceChar
函数接受三个参数,分别是指向字符串的指针、需要替换的字符和替换为的字符。在循环中,如果字符串中的字符等于需要替换的字符,则将其替换为指定的新字符。最后在main
函数中调用replaceChar
函数,并输出替换后的字符串。
11-20
11-20
11-19
11-20
11-20
11-19
11-20
11-19
11-20
11-20
11-19
11-19
11-19
11-19
11-19
11-19