কম্পিউটার

রেগুলার এক্সপ্রেশন \t জাভাতে মেটাক্যারেক্টার


সাব এক্সপ্রেশন/মেটাচ্যারেক্টার “\t ” ট্যাব স্পেসের সাথে মেলে।

উদাহরণ 1

import java.util.Scanner;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class RegexExample {
   public static void main( String args[] ) {
      String regex = "\\t";
      Scanner sc = new Scanner(System.in);
      System.out.println("Enter a string: ");
      String input = sc.nextLine();
      Pattern p = Pattern.compile(regex);
      Matcher m = p.matcher(input);
      int count = 0;
      while(m.find()) {
         count ++;
      }
      System.out.println("Number of tab spaces: "+count);
   }
}

আউটপুট

Enter a string:
This    is    a    sentence    with    tab    spaces
Number of tab spaces: 6

উদাহরণ 2

import java.util.Scanner;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class RegexExample {
   public static void main( String args[] ) {
      String regex = "\\t";
      Scanner sc = new Scanner(System.in);
      System.out.println("Enter a string: ");
      String input = sc.nextLine();
      Pattern p = Pattern.compile(regex);
      Matcher m = p.matcher(input);
      int count = 0;
      String result = "";
      while(m.find()) {
         result = m.replaceAll(" ");
      }
      System.out.println("Result: "+result);
   }
}

আউটপুট

Enter a string:
This is a sentence with tab spaces
Result: This is a sentence with tab spaces

  1. জাভাতে রেগুলার এক্সপ্রেশন \A মেটাক্যারেক্টার ব্যাখ্যা কর

  2. নিয়মিত অভিব্যক্তি। (ডট) জাভাতে মেটাক্যারেক্টার

  3. জাভাতে রেগুলার এক্সপ্রেশন $ (ডলার) মেটাক্যারেক্টার

  4. জাভাতে রেগুলার এক্সপ্রেশন ^ (ক্যারেট) মেটাক্যারেক্টার