Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

parsley.js telephone digits input validating with spaces

I have an input for telephone number.

I would like to write this format: 0175 6565 6262 (with spaces). But if write with " " spaces so get error and I write without spaces so get not error.

Here my HTML Input:

<input type="text" data-parsley-minlength="6" data-parsley-minlength-message="minlength six number" data-parsley-type="digits" data-parsley-type-message="only numbers" class="input_text" value="">

Hope someone can help me?

like image 628
Dave Avatar asked Apr 12 '14 15:04

Dave


2 Answers

That's a great answer, but it's a bit too narrow for my needs. Input field should be tolerant of all potential inputs – periods, hyphens, parentheses, spaces in unexpected places, plus signs for international folk – and using this document from Microsoft detailing what numbers IE11 should accept, I've come up with this:

data-parsley-pattern="^[\d\+\-\.\(\)\/\s]*$"

Every number in that list passes the test with flying colours. Enjoy!

like image 68
ghettosoak Avatar answered Oct 20 '22 17:10

ghettosoak


If you want your input to accept a string like "nnnn nnnn nnnn" you should use a regular expression. For example, you can use the following HTML:

<input type="text" name="phone" value="" data-parsley-pattern="^\d{4} \d{4} \d{4}$" />

With this pattern the input will only be valid when you have fourdigits«space»fourdigits«space»fourdigits You can test or tweak the regular expression and test it here: http://regexpal.com/

If you will use this pattern multiple times in your project I suggest you create a custom validator (see http://parsleyjs.org/doc/index.html#psly-validators-craft)

like image 28
Luís Cruz Avatar answered Oct 20 '22 18:10

Luís Cruz