How to make a regex for decimal that has a defined length (coma includes)
I am looking for a 15 characters length regex with a decimal.
In the swift documentation, the regex would look like this : 3!a15d where 3!a means [a-zA-Z]{3} and 15d means a decimal of 15 characters length with a coma.
I tried the regex be…