鱼C论坛

 找回密码
 立即注册
查看: 2681|回复: 6

字符串 替换

[复制链接]
发表于 2015-11-22 14:32:49 | 显示全部楼层 |阅读模式
10鱼币
输入一串 字符串。将字符串中出现的solt(不管大小写) 替代为soy sauce。

我的问题,我的代码只能代替第一次出现的salt,后面出现就不会替代了。
最好可以在我的代码上修改,谢谢~
# include <stdio.h>
# include <string.h>
main()
{
        int i,j,k,q,n=0;
        char st1[100],st2[100],st3[100],st4[10]="soy sauce";
        while( gets(st1) != NULL )
        {
                for(i=0;st1[i] != '\0';i++)
                {
                        if(st1[i] >= 65 && st1[i] <=90)
                           st2[i]=st1[i]+32;
            else
               st2[i]=st1[i];
        }  //上面代码将所有大写替代小写,方便下面查找salt 
        st2[i]='\0';
        for(i=0;st2[i] != '\0';i++)
        {
                if(st2[i]=='s' && st2[i+1]=='a' && st2[i+2]=='l' && st2[i+3]=='t')
                   {   //判断 

                             j=i;
               for(k=0;st4[k]!='\0';k++)
                           {
                                   st3[j]=st4[k];
                                   j++; 
                     }   //将salt 替换 
                     st3[j]='\0';
                     for(q=i+4;st1[q] != '\0';q++)
                       {
                               st3[j]=st1[q];
                               j++;
                        }  //将后面的字符串接上去。 
                       st3[j]='\0';
                       printf("%s",st3); 
                        break;   //由于我的代码只会检查一次salt,所以后面有salt 就不会替换了 
                    }
                   else
                    st3[i]=st1[i];
         }
        
     }                  
}

最佳答案

查看完整内容

这是尽量按照你原来的代码改的~

点评

找到你要的答案记得回来选最佳。别人帮你改了还是把鱼币给人家啊  发表于 2015-11-23 20:14
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2015-11-22 14:32:50 | 显示全部楼层
本帖最后由 康小泡 于 2015-11-23 20:13 编辑

这是尽量按照你原来的代码改的~
# include <stdio.h>
# include <string.h>
int main()
{
        int i, j, k, n;
        char st1[100] = { 0 }, st3[100], st4[10] = "soy sauce";
        gets(st1);
        while (st1[0] != '\0')
        {
                n = 0;//发生替换的次数
                
                for (i = 0; st1[i] != '\0'; i++)//将大写替换成小写(原地改就行,不用转存到st2,这样比较省空间)
                        if (st1[i] >= 65 && st1[i] <= 90)
                                st1[i] = st1[i] + 32;

                for (i = 0; st1[i] != '\0'; i++)
                {
                        if (st1[i] == 's' && st1[i + 1] == 'a' && st1[i + 2] == 'l' && st1[i + 3] == 't')
                        {   //判断
                                j = i + 5 * n;
                                for (k = 0; st4[k] != '\0'; k++)
                                {
                                        st3[j] = st4[k];
                                        j++;
                                }//将salt替换成soy sauce
                                n++;
                                i = i + 3;
                        }
                        else
                                st3[i + 5 * n] = st1[i];
                }
                st3[i + 5 * n] = '\0';
                printf("%s\n", st3);
                gets(st1);
        }
        return 0;
}
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2015-11-22 15:02:32 | 显示全部楼层
本帖最后由 康小泡 于 2015-11-23 20:13 编辑
#include <Iostream>
#include <Windows.h>
#include <Stdlib.h>
using namespace std;

#define SRC "solt"
#define DES "soy sauce"
int main(void)
{
        //缓冲区
        char a[100]={0},b[100]={0};
        //cin>>a;
        gets(a);

        //缓冲区长度
        int len = strlen(a);

        char *p = b;

        //被替换的字符串长度
 
        for (int i = 0; i < len;i++)
        {
                if( 0==strncmp(a+i,SRC,strlen(SRC)) )
                {
                        strcat(b,DES);

                        p+=strlen(DES);

                        i+=strlen(SRC)-1;
                }
                else
                {
                        *p++ = a[i];
                }

        }
        cout<<b;

        system("Pause");
        return 0;
}

评分

参与人数 1荣誉 +5 鱼币 +5 收起 理由
独一无② + 5 + 5 支持楼主!

查看全部评分

想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

 楼主| 发表于 2015-11-22 15:57:35 | 显示全部楼层
迷雾少年 发表于 2015-11-22 15:02
#include
#include
#include

  cout<<b;    最后这个是什么意思,我指针 学的不太好,有点不明白
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2015-11-23 12:26:29 From FishC Mobile | 显示全部楼层
独一无② 发表于 2015-11-22 15:57
cout

这个是C++的,输出b的意思
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2015-12-5 12:26:42 | 显示全部楼层
不错,不错
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-11-26 14:31

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表