?: Match an element zero or one time 例如: colou?r: color 或 colour 但不能是 colo2r *: Match an element zero or more times +: Match an element one or more times {}: Match an element a specific number of times 可以自定义需要满足条件的次数: {n}: exactly 满足 n 次 {n, m}: 至少满足…
默认是:区分大小写的: 传递标志参数:Pattern.CASE_INSENSITIVE,以说明匹配时忽略大小写:如果你的代码运行在不同的地区那么你应该再添加一个Pattern.UNICODE_CASE标志. import java.util.regex.Pattern; /** * Created by Frank * 在正则表达式中控制大小写 */ public class CaseMatch { public static void main(String[] args) { Pattern…