I am looking for the right pattern allowing to validate french numbers (positive integers) in an HTML input.
i.e. thousand separator is a "space".
Ex. of correct values:
Ex. of incorrect:
I have tried the pattern bellow, but it does not work
<input pattern="([0-9]*[ ]*)*"/>
Thanks for your help