java正则表达式不包含特殊字符验证

原文链接:https://blog.csdn.net/weixin_39625782/article/details/114674258

package com.sodii.regex.demo;

import java.util.regex.Matcher;

import java.util.regex.Pattern;

public class RegexDemo {

/**@author wtmax

* @param args

*/

public static void main(String[] args) {

// TODO Auto-generated method stub

RegexDemo rd=new RegexDemo();

rd.testRegex();

rd.testRegex2();

}

public void testRegex(){

String str="ww%%%qq%%q";

//不包含%的任何一个字符

//String regex="[^%]";

//不包含%的任何字符串

String regex="[^%]{1,}";

Pattern p=Pattern.compile(regex);

Matcher m=p.matcher(str);

System.out.println(m.matches());

}

public void testRegex2(){

String str="wwqqqs
$fd
$fd
w";

//不包含%,&,$的任何字符串 // <>/!@#$%^&*()

String regex="[^%$&]{1,}";

Pattern p=Pattern.compile(regex);

Matcher m=p.matcher(str);

System.out.println(m.matches());

}

}

posted @ 2023-02-01 12:39  枫树湾河桥  阅读(1612)  评论(0编辑  收藏  举报
Live2D