I am working on a RegEx in which I want any number of occurrences of white spaces and any number of occurrences of digits in the total length of 13. Something like
' 12'
or
' 115678'
Current Regex:
(^\s*\d[0-9]{1,12})$
How to get this variable occurrences using blocks