Varidate email address


/ Published in: Ruby
Save to your folder(s)



Copy this code and paste it in your HTML
  1. validates_format_of(:email, :with => /^([^@\s]+)@((?:[-a-z0-9]+\.)+[a-z]{2,})$/i, :on => :create, :message=>"has an invalid format") # AND A LOGIN VALIDATION EXAMPLE MIGHT BE validates_format_of :login, :with => /\w+@\w+\.\w{2}/

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.