Fragment validator

Example regular expression matches 4 capital letters followed by 5 digits:

^[A-Z]{4}[0-9]{5}$


Output

 


Code