Is it possible to use strings of digits of variable length?
For example,
\d{9}
will generate a string of 9 random digits.
What I’d like to achieve is to have the length determined by a field in my schema. Something like:
\d{{{my_field}}}
This approach doesn’t work.
What would be an alternative?