String str1 = “a”;
//只匹配字符a
System.out.println(str1.matches(“a”));//TRUE
//匹配0-9,a-z,A-Z 的单个字符
System.out.println(str1.matches(“[a-z0-9A-Z]”));//TRUE
//^在[]里面代表非 , 匹配不是0-9,a-z,A-Z 的单个字符
System.out.println(str1.matches(“[^a-z0-9A-Z]”));//false
匹配多个字符
String str2 = “java”;
//直接匹配相同的字符串
System.out.println(str2.matches(“java”));//true
//一个字符一个字符的匹配
System.out.println(str2.matches(“[a-z0-9A-Z][a-z0-9A-Z][a-z0-9A-Z][a-z0-9A-Z]”));//true
//{}代表几次
System.out.println(str2.matches(“[a-z0-9A-Z]{4}”));//true
//+代表一次或者多次
System.out.println(str2.matches(“[a-z0-9A-Z]+”));//true
System.out.println(“”.matches(“[a-z0-9A-Z]+”));//false
//*表示0次或者多次
System.out.println(str2.matches(“[a-z0-9A-Z]*”));//true
System.out.println(“”.matches(“[a-z0-9A-Z]*”));//true
匹配0次或者一次
String str3 = “abc”;
//匹配3-4个字符
System.out.println(str3.matches(“[a-z0-9A-Z][a-z0-9A-Z][a-z0-9A-Z][a-z0-9A-Z]?”));//true
System.out.println(“abcde”.matches(“[a-z0-9A-Z][a-z0-9A-Z][a-z0-9A-Z][a-z0-9A-Z]?”));//false
匹配数字或者非数字
**注意:
此时使用 \ \ 是因为 \ 为转义**
String str4 = “123”;
String str5 = “abc”;
//匹配数字 /d
System.out.println(str4.matches(“\d+”));//true
System.out.println(str5.matches(“\d+”));//false
//匹配非数字
System.out.println(str4.matches(“\D+”));//false
System.out.println(str5.matches(“\D+”));//true
匹配任何字符类字符0-9 a-z A-Z
String str6 = “123”;
String str7 = “abc”;
String str8 = “%^&”;
//\w 匹配 0-9 a-z A-Z
System.out.println(str6.matches(“\w+”));//TRUE
System.out.println(str7.matches(“\w+”));//TRUE
System.out.println(str8.matches(“\w+”));//FALSE
//\W 匹配非 0-9 a-z A-Z
System.out.println(str6.matches(“\W+”));//FALSE
System.out.println(str7.matches(“\W+”));//FALSE
System.out.println(str8.matches(“\W+”));//TRUE
或者
String sex1 = “男”;
String sex2 = “女”;
String sex3 = “男女”;
//|前后代表或者的关系 , 一般匹配多个字符时 带()即可
System.out.println(sex1.matches(“[男]|[女]”));//true
System.out.println(sex2.matches(“[男]|[女]”));//true
System.out.println(sex3.matches(“[男]|[女]”));//true
最后
Java架构学习技术内容包含有:Spring,Dubbo,MyBatis, RPC, 源码分析,高并发、高性能、分布式,性能优化,微服务 高级架构开发等等。
还有Java核心知识点+全套架构师学习资料和视频+一线大厂面试宝典+面试简历模板可以领取+阿里美团网易腾讯小米爱奇艺快手哔哩哔哩面试题+Spring源码合集+Java架构实战电子书+2021年最新大厂面试题。
高并发、高性能、分布式,性能优化,微服务 高级架构开发等等。
还有Java核心知识点+全套架构师学习资料和视频+一线大厂面试宝典+面试简历模板可以领取+阿里美团网易腾讯小米爱奇艺快手哔哩哔哩面试题+Spring源码合集+Java架构实战电子书+2021年最新大厂面试题。
[外链图片转存中…(img-88333pFS-1714348027775)]