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

将字符串s1中的任何与字符串s2中字符匹配的字符都删除

时间:2016-03-08 00:41:01      阅读:158      评论:0      收藏:0      [点我收藏+]

标签:字符串   程序   

编写一个程序,将字符串s1中的任何与字符串s2中字符匹配的字符都删除。

函数原型:void my_squeeze(char s1[], char s2[])

#include <stdio.h>

void my_squeeze(char s1[], char s2[])

{

int i = 0;

int j = 0;

while (s2[j])

{

while(s1[i])

{

if (s2[j]==s1[i])

{

while (s1[i+1])

{

s1[i] = s1[i + 1];

i++;

}

s1[i] = ‘\0‘;

}

i++;

}

i = 0;

j++;

}

}

int main()

{

char arr1[] = "qwdcgje"; 

char arr2[] = "abcdefg";

        /*char arr1[] = { ‘q‘, ‘w‘, ‘d‘, ‘c‘, ‘g‘, ‘j‘, ‘e‘ };

char arr2[] = { ‘a‘, ‘b‘, ‘c‘, ‘d‘, ‘e‘, ‘f‘ }; 字符数组后面没有0,不知道什么时候停下,所以出错*/

my_squeeze(arr1, arr2);

printf("%s\n", arr1);

system("pause");

return 0;

}



将字符串s1中的任何与字符串s2中字符匹配的字符都删除

标签:字符串   程序   

原文地址:http://11285984.blog.51cto.com/11275984/1748588

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