আপনি মেটা অক্ষর “\\A” ব্যবহার করে ইনপুটের শুরুর সাথে মেলাতে পারেন।
উদাহরণ
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 = "\\A[0-9]"; //Compiling the regular expression Pattern pattern = Pattern.compile(regex); //Retrieving the matcher object Matcher matcher = pattern.matcher(input); int count = 0; if(matcher.find()) { System.out.println("Match found "); } else { System.out.println("Match not found "); } } }
আউটপুট 1
Enter a String 12 sample text Match found
আউটপুট 2
Enter a String sample text Match not found