@domenico
To match 10 numbers with or without spaces using regex, you can use the following pattern:
1
|
d{1,3}(?:s?d{3}){2} |
Explanation:
This pattern will match 10 numbers with or without spaces, such as:
If you want to allow for more or fewer spaces between the numbers, you can modify the pattern accordingly.