首页 > 携程笔试 敏感词替换
头像
进击小高
编辑于 2020-09-09 14:07
+ 关注

携程笔试 敏感词替换

public static void mingan(String s1,String s2,String s3){
        int len=s1.length();
        for(int i=0;i<s2.length()-len+1;i++){
            String str=s2.substring(i,i+len);
            boolean flag=true;
            for(char c:s1.toCharArray()){
                if(str.indexOf(c)==-1){
                    flag=false;
                }
            }
            if(flag)s2=s2.replace(str,s3);
        }
        System.out.println(s2);
    }

过了44 ,请教各位大佬,什么问题

全部评论

(1) 回帖
加载中...
话题 回帖

相关热帖

近期热帖

历年真题 真题热练榜 24小时
技术(软件)/信息技术类
查看全部

近期精华帖

热门推荐