fork download
  1. import java.util.*;
  2. import java.util.regex.*;
  3. import java.lang.*;
  4. import java.io.*;
  5.  
  6. class Ideone
  7. {
  8. public static void main (String[] args) throws java.lang.Exception
  9. {
  10. String s = "00000016015";
  11. String matchingBlock = "^8+0+(\\d{3})";
  12. boolean hh = s.matches(matchingBlock);
  13. System.out.println(hh); // [NYK:1100][CLT:2300][KTY:3540]
  14. }
  15. }
Success #stdin #stdout 0.12s 55808KB
stdin
Standard input is empty
stdout
false