码迷,mamicode.com
首页 > 其他好文 > 详细

C中字符串替换

时间:2016-05-29 09:38:39      阅读:146      评论:0      收藏:0      [点我收藏+]

标签:

 1 #include<stdio.h>
 2 #include<string.h>
 3 
 4 void swap(char text[], char a[], char b[])
 5 {
 6     char *str = text, back[20];
 7     while ((str = strstr(str, a)) != NULL)
 8     {
 9         strcpy(back, str + strlen(a));
10         *str = 0;
11         strcat(text, b);
12         strcat(text, back);
13         str += strlen(b);
14     }
15 }
16 int main()
17 {
18     char text[80], a[20], b[20];
19     gets(text);
20     scanf("%s", a);
21     scanf("%s", b);
22     swap(text, a, b);
23     puts(text);
24     return 0;
25 }

 

C中字符串替换

标签:

原文地址:http://www.cnblogs.com/maxin/p/5538906.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!