The java.util.regex.Pattern has several flags which are very helpful. One of them is CASE_INSENSITIVE
Just add this flag when creating pattern instance. Everything else follows normal regex usage.
Here is a hello world level demo for case-insensitive regular expression in Java.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | package com.shengwang.demo; import java.util.regex.Matcher; import java.util.regex.Pattern; public class RegexCaseInsensitive { public static void main(String[] args) { String input = "ABC" ; String regex = "abc" ; boolean matchResult; Pattern p = Pattern.compile(regex, Pattern.CASE_INSENSITIVE); // add flag here Matcher m = p.matcher(input); matchResult = m.matches(); System.out.println( "matchResult=" +matchResult); // print "matchResult=true" } } |
For most basic regular expression Java API usage, check out article “The basic regular expression API in Java”
0 comments:
Post a Comment