标题:字符串替换--帮忙修改一下
取消只看楼主
lzxm160
Rank: 1
等 级:新手上路
帖 子:103
专家分:0
注 册:2006-12-26
 问题点数:0 回复次数:0 
字符串替换--帮忙修改一下
#include<stdio.h>
#include<string.h>
void main()
{
    char s[30];
    char str[] = "input";
    void replace(char *s, char str[]);
    clrscr();
    printf("input a string:\n");
    scanf("%s", s);
    replace(s, str);
}
void replace(char *s, char *str)
{
    int i, j;
    if (strstr(s, str)!=NULL)
    {
        i = strstr(s, str);
        s[i]= 's';s[++i] = 'h';
        s[++i]   = 'u';s[++i]   = 'r';
        s[++i]   = 'u';
        printf("%s", s);
    }
    else printf("no found");
}
搜索更多相关主题的帖子: 串替 字符 
2008-01-13 18:13



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-197345-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.623441 second(s), 8 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved