Number field without thousands separator

Hello all,

I want to create a number field that has a continuous number for an object. Only when I enter it, a thousands separator is automatically added. How can I turn this off? For example:

00123
00124
00125

As a modeler, I would say that you can model the field as a string.

In addition, you could add a pattern to the data configuration to ensure that only digits are used, for example:

[0-9]*

Finally, if you need to work with the data from this field further, you can use the following operator in validation and computation rules:

FieldValueAsNumber(Field)