I am looking for a way in Rails (2.3.9) to PREVENT users from entering email addresses, and phone numbers of as many formats as possible. I have a textbox, and I do not want users to be able to submit email addresses or phone numbers..
Any ideas?
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.
Probably the most straightforward method would be to use a custom validation with validate. You can check against the regexes you want to prevent users from submitting and supply your own validation message.
I’ve created a gist demonstrating this behavior.