How to pad a string with leading zeros of a fixed length. in regex expression for mongoDB native query.
For example, for length of 4:
‘12’ → ‘0012’
‘123’ → ‘0123’
‘1234’ → ‘1234’
How to pad a string with leading zeros of a fixed length. in regex expression for mongoDB native query.
For example, for length of 4:
‘12’ → ‘0012’
‘123’ → ‘0123’
‘1234’ → ‘1234’
I wrote a blog post a while back showing how to do it:
Asya
thank you very much!!! It works well.
This topic was automatically closed 5 days after the last reply. New replies are no longer allowed.