Java检测违规字
2021/7/20 12:37:21
本文主要是介绍Java检测违规字,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
package TestPackage4; import java.util.Scanner; public class traverse { public static void main(String[] args) { Scanner sc= new Scanner(System.in); System.out.println("请输入一串字符"); String Line = sc.nextLine(); System.out.println("请输入需要屏蔽的字符"); String spot = sc.nextLine(); int cc=0; int aa=0; System.out.println("__________________"); System.out.println("字符串个数:" + Line.length()); System.out.println("屏蔽字符串个数:" + spot.length()); char [] arr = new char[Line.length()]; char [] arr2 = new char[spot.length()]; //填入字符串 for(int i=0;i<spot.length();i++) { arr2[i]= spot.charAt(i); } for(int i=0;i<Line.length();i++) { arr[i]= Line.charAt(i);//把字符输入到数组里面! } System.out.println("__________________"); System.out.println("字符串内容:"); System.out.println(arr); System.out.println(arr2); System.out.println("__________________"); for(int i=0;i<Line.length();i++){ System.out.print(Line.charAt(i)); if(cc==spot.length()){ //检测字符是否完全匹配 arr[i] = '*' ;//把字符输入到数组里面! aa++; if(aa==spot.length()){ cc=0; aa=0; } }else { //进入检测 int t=i+1; if(i<=Line.length()-2) { if (arr[t] == arr2[0]) { for (int j = 0; j < spot.length(); j++) {//检测后几位 int jj = t + j; if (arr[jj] == arr2[j]) { cc++;//检测到一个字符就加1 } } } } } } System.out.println(); System.out.println(arr); System.out.println("__________________"); } }
这篇关于Java检测违规字的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-16Maven资料入门指南
- 2024-11-16Maven资料入门教程
- 2024-11-16MyBatis Plus资料:新手入门教程与实践指南
- 2024-11-16MyBatis-Plus资料入门教程:快速上手指南
- 2024-11-16Mybatis资料入门教程:新手必看指南
- 2024-11-16MyBatis资料详解:新手入门与初级实战指南
- 2024-11-16MyBatisPlus资料:初学者入门指南与实用教程
- 2024-11-16MybatisPlus资料详解:初学者入门指南
- 2024-11-16MyBatisX资料:新手入门与初级教程
- 2024-11-16RESTful接口资料详解:新手入门指南