import java.util.regex.*;

public class RegexSpecialCharExample {
    public static void main(String[] args) {
        String regex = "\\d{2,4}";  // جستجو برای 2 تا 4 رقم متوالی
        String input = "1234 is a number";
        
        Pattern pattern = Pattern.compile(regex);
        Matcher matcher = pattern.matcher(input);
        
        while (matcher.find()) {
            System.out.println("Found: " + matcher.group());  // پیدا کردن عدد 1234
        }
    }
}