অক্ষর শ্রেণীগুলি আপনাকে অক্ষরের একটি নির্দিষ্ট সেট থেকে একটি একক অক্ষর গ্রহণ করার অনুমতি দেয়। উদাহরণস্বরূপ,
-
অভিব্যক্তি “[tmp] ” t বা, m বা, p.
অক্ষরের সাথে মেলে -
অভিব্যক্তি “[^tp] ” t বা, p.
ছাড়া অন্য অক্ষরের সাথে মেলে
উদাহরণ 1
import java.util.Scanner;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class Example {
public static void main(String args[]) {
//Reading String from user
System.out.println("Enter a String");
Scanner sc = new Scanner(System.in);
String input = sc.nextLine();
//Regular expression to match the characters t or, m or, p
String regex = "[tmp]";
//Compiling the regular expression
Pattern pattern = Pattern.compile(regex);
//Retrieving the matcher object
Matcher matcher = pattern.matcher(input);
int count = 0;
while(matcher.find()) {
count++;
}
System.out.println("Occurrences: "+count);
}
} আউটপুট
Enter a String hello how are you welcome to tutorialspoint Occurrences :6
উদাহরণ 2
import java.util.Scanner;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class Example {
public static void main(String args[]) {
//Reading String from user
System.out.println("Enter a String");
Scanner sc = new Scanner(System.in);
String input = sc.nextLine();
String regex = "[^abcdef]";
//Compiling the regular expression
Pattern pattern = Pattern.compile(regex);
//Retrieving the matcher object
Matcher matcher = pattern.matcher(input);
int count = 0;
while(matcher.find()) {
count++;
}
System.out.println("Occurrences :"+count);
}
} আউটপুট
Enter a String Hello how are you welcome to tutorialspoint Occurrences :36