I know exact prefix of the String.
E.g. it is 'XXX000'
After the prefix, digits and chars in quantity of 60 go.
How to construct regexp this case?
In my initial understanding it should looks like:
(XXX000)(\w{*})
like: prefix(some digits or some chars)
Thank you.