কম্পিউটার

উদাহরণ সহ জাভাতে প্যাটার্ন UNICODE_CHARACTER_CLASS ফিল্ড


পূর্বনির্ধারিত অক্ষর ক্লাস এবং POSIX অক্ষর ক্লাসের ইউনিকোড সংস্করণ সক্ষম করে৷

উদাহরণ

import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class UNICODE_CHARACTER_CLASS_Example {
   public static void main( String args[] ) {
      String regex = "\u00de";
      //Compiling the regular expression
      Pattern pattern = Pattern.compile(regex, Pattern.UNICODE_CHARACTER_CLASS);
      //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 Þ

  1. উদাহরণ সহ জাভাতে প্যাটার্ন লিটারাল ফিল্ড

  2. উদাহরণ সহ জাভাতে DOTALL ক্ষেত্রের প্যাটার্ন

  3. উদাহরণ সহ জাভাতে প্যাটার্ন মন্তব্য ক্ষেত্র

  4. উদাহরণ সহ জাভাতে প্যাটার্ন CANON_EQ ক্ষেত্র