เปิดใช้งานการพับเคสแบบ Unicode-aware
เมื่อคุณใช้ค่านี้เป็นค่าแฟล็กของวิธีการคอมไพล์ () พร้อมกับแฟล็ก CASE_INSENSITIVE และหากคุณค้นหาอักขระ Unicode โดยใช้นิพจน์ทั่วไป อักขระ Unicode ของทั้งสองกรณีจะถูกจับคู่
ตัวอย่าง
import java.util.regex.Matcher; import java.util.regex.Pattern; public class UNICODE_CASE_Example { public static void main( String args[] ) { String regex = "\u00de"; //Compiling the regular expression Pattern pattern = Pattern.compile(regex, Pattern.UNICODE_CASE|Pattern.CASE_INSENSITIVE); //Retrieving the matcher object String str[] = {"\u00de", "\u00fe", "\u00ee", "\u00ce"}; for (String ele : str) { Matcher matcher = pattern.matcher(ele); if(matcher.matches()) { System.out.println(ele+" is a match for "+regex); } else { System.out.println(ele+" is not a match for "+regex); } } } }
ผลลัพธ์
Þ is a match for Þ þ is a match for Þ î is not a match for Þ Î is not a match for Þ