Page 1 of 1
					
				Phone Number Format
				Posted: Thu Aug 05, 2021 5:01 pm
				by Williams
				Hey All, 
Is there a way to set the phone number format like xxx-xxx-xxxx in the form editbox. 

 
			
					
				Re: Phone Number Format
				Posted: Thu Aug 05, 2021 5:51 pm
				by Pablo
				You can use custom regular expressions (select 'custom').
This may be helpful:
https://www.codegrepper.com/code-exampl ... javascript 
			
					
				Re: Phone Number Format
				Posted: Thu Aug 05, 2021 7:19 pm
				by Williams
				Thank you Pablo for your support..
Actually I'm not familiar with Java script. so if you can let me know the value of this script that would be much better..
Thank you again very much for your time
			 
			
					
				Re: Phone Number Format
				Posted: Fri Aug 06, 2021 5:53 am
				by Pablo
				You do not need JavaScript. You will only need to copy the regular expression.
Code: Select all
/^[\+]?[(]?[0-9]{3}[)]?[-\s\.]?[0-9]{3}[-\s\.]?[0-9]{4,6}$/im