I want a regular expression to allow following characters, at any position:
Number 0-9, Space, Decimal, +, ., (, )
By any position i mean, eg: Decimal can come before digits or after digits.
I can allow 0 to max 16 characters.
TIA.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Just create a character class with the characters you need
Then add the quantifier
and at last, put anchors around it