A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© asd1164935710 中级黑马   /  2018-1-23 21:25  /  1594 人查看  /  6 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文


import java.util.Arrays;
import java.util.Scanner;

public class Test4 {
        public static void main(String[] args) {
                Scanner scanner = new Scanner(System.in);
                System.out.println("请输入原字符串:");
                String scrStr = scanner.nextLine();
                System.out.println("请输入要删除的字符串:");
                String delStr = scanner.nextLine();
                Str(scrStr, delStr);
                Str2(scrStr, delStr);
                Str3(scrStr,delStr);
                Str4(scrStr, delStr);

               
        }
        public static void Str(String scrStr ,String delStr){
                int count = 0;
                int index = 0;
                String teString = scrStr;
                while((index = scrStr.indexOf(delStr))!=-1){
                        count++;
                scrStr =scrStr.substring(index+delStr.length()); ;
        }
                String s2 = delStr.substring(2);
                String [] aStrings = teString.split(delStr);
                StringBuilder sBuilder = new StringBuilder();
                for (int i = 0; i < aStrings.length; i++) {
                        sBuilder.append(aStrings[i]);
                }
                String string = new String(sBuilder);
                String str1 = "";
                if (string.contains(delStr.substring(2))){       
                String str = string.replace(delStr.substring(2), "");
                str1 = str.replace(delStr.substring(0,2), "");
                count++;
                }
                if (string.contains(delStr.substring(0,1))){
                String str2 = str1.replace(delStr.substring(0,1), "");
                System.out.println("源字符串中总共包含:"+count+" 个");
                System.out.println("删除"+delStr+"后的字符串为");
                System.out.println(str2);
        }
        }
               
        public static void Str2(String scrStr ,String delStr) {
                StringBuilder stringBuilder = new StringBuilder(scrStr);
                int count =0;
                for (int i = 0; i < stringBuilder.length(); i++) {
                        if (stringBuilder.indexOf(delStr,i)==i) {
                                count++;
                                stringBuilder.delete(i,i+delStr.length());
                                i-=delStr.length();
                        }
                }
                String rString = stringBuilder.toString();
                System.out.println("源字符中总共有"+count+"个"+delStr);
                System.out.println("删除后的字符为:"+rString);
}

        public static void Str3(String scrStr ,String delStr){
                        int count=0;//计数器
                        String newS;//声明一个新字符串
                        while(true) {
                                newS=scrStr.replace(delStr,"");//替换所有delstr为空 生成新字符串放进新字符串 里。
                                int n=(scrStr.length()-newS.length())/delStr.length();//用源字符串 减去新字符串 算出delstr被减的个数,在除以delst的长度  就等于减的次数
                                count+=n;//依次累加次数。
                                scrStr=newS;//在吧新字符串赋值进源数组。
                                if(!newS.contains(delStr)) {
                                        break;
                                }
                        }
                        System.out.println("源字符串中总共包含:"+count+"个 "+delStr+" 删除"+delStr+"后的字符串为:" +newS);

        }
        public static void Str4(String scrStr ,String delStr) {
                int count =0;
                while(scrStr.contains(delStr)){
                        scrStr=scrStr.replaceFirst(delStr, "");
                        count++;
                }
                System.out.println("源字符串中总共包含:"+count+"个 "+delStr+" 删除"+delStr+"后的字符串为:" +scrStr);
        }
}

6 个回复

倒序浏览
继续努力哦~
回复 使用道具 举报
学无止境   路还很长  加油哦
回复 使用道具 举报
回复 使用道具 举报
学习使你进步,
回复 使用道具 举报
温故而知新    加油哦  
回复 使用道具 举报
厉害了 四种解法
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马