Java 正则表达式字母篇

字母

匹配 a-z 的小写字母

[a-z] 可以匹配一位 a-z 的小写字母,

        String regexaz = "[a-z][z-z]";
        System.out.println("az".matches(regexaz));// true
        System.out.println("aZ".matches(regexaz));// false
        System.out.println("AA".matches(regexaz));// false
        System.out.println("66".matches(regexaz));// false

匹配特定的小写字母

[abc] 或者 [a-c] 表示只会匹配 a 、b 、c

        //String regexabc = "[abc]";
        String regexabc = "[a-c]";
        System.out.println("a".matches(regexabc));// true
        System.out.println("b".matches(regexabc));// true
        System.out.println("c".matches(regexabc));// true
        System.out.println("abc".matches(regexabc));// false
        System.out.println("ad".matches(regexabc));// false
        System.out.println("abcd".matches(regexabc));// false

匹配非特定的小写字母

和 匹配特定的小写字母 相反,

[^abc] 表示只会匹配 a 、b 、c 以外的字母,

        String regexFabc = "[^abc]";
        System.out.println("a".matches(regexFabc));// false
        System.out.println("b".matches(regexFabc));// false
        System.out.println("c".matches(regexFabc));// false
        System.out.println("d".matches(regexFabc));// true
        System.out.println("z".matches(regexFabc));// true
        System.out.println("x".matches(regexFabc));// true

大写字母也可以这样。

匹配 A-Z 的大写字母

[A-Z] 可以匹配一位 A-Z 的大写字母,

        String regexdAZ = "[A-Z][A-Z]";
        System.out.println("AZ".matches(regexdAZ));// true
        System.out.println("Az".matches(regexdAZ));// false
        System.out.println("az".matches(regexdAZ));// false
        System.out.println("11".matches(regexdAZ));// false

匹配特定的大写字母

只匹配 R 、P 、G ,用 [RPG] ,

        String regexRPG = "[RPG]";
        System.out.println("R".matches(regexRPG));// true
        System.out.println("P".matches(regexRPG));// true
        System.out.println("G".matches(regexRPG));// true
        System.out.println("RPG".matches(regexRPG));// false
        System.out.println("r".matches(regexRPG));// false
        System.out.println("p".matches(regexRPG));// false
        System.out.println("g".matches(regexRPG));// false
        System.out.println("rpg".matches(regexRPG));// false

匹配 a-z 和 A-Z 的任何字母符号

[a-zA-Z] 可以匹配一位 a-z 和 A-Z 的任何字母符号

        String regexdazAZ = "[a-zA-Z][a-zA-Z]";
        System.out.println("AZ".matches(regexdazAZ));// true
        System.out.println("Az".matches(regexdazAZ));// true
        System.out.println("az".matches(regexdazAZ));// true
        System.out.println("11".matches(regexdazAZ));// false
相关推荐
黑客老陈12 分钟前
新手小白如何挖掘cnvd通用漏洞之存储xss漏洞(利用xss钓鱼)
运维·服务器·前端·网络·安全·web3·xss
正小安17 分钟前
Vite系列课程 | 11. Vite 配置文件中 CSS 配置(Modules 模块化篇)
前端·vite
wm104323 分钟前
java web springboot
java·spring boot·后端
smile-yan24 分钟前
Provides transitive vulnerable dependency maven 提示依赖存在漏洞问题的解决方法
java·maven
老马啸西风25 分钟前
NLP 中文拼写检测纠正论文-01-介绍了SIGHAN 2015 包括任务描述,数据准备, 绩效指标和评估结果
java
Earnest~29 分钟前
Maven极简安装&配置-241223
java·maven
皮蛋很白31 分钟前
Maven 环境变量 MAVEN_HOME 和 M2_HOME 区别以及 IDEA 修改 Maven repository 路径全局
java·maven·intellij-idea
青年有志33 分钟前
JavaWeb(一) | 基本概念(web服务器、Tomcat、HTTP、Maven)、Servlet 简介
java·web
上海研博数据37 分钟前
flink+kafka实现流数据处理学习
java
KpLn_HJL39 分钟前
leetcode - 2139. Minimum Moves to Reach Target Score
java·数据结构·leetcode