Rajinder Yadav wrote:
> How can I validate and email address without using complex reg-ex is
> there a simple rails way to do this?

Are you nuts? That's just the sort of thing Regexp was designed to do. 
And, it's not really all that complex. The Rails docs even use email 
validation as the example for validates_format_of so it's not like you 
have to write the "complex" regex yourself. Just copy-and-paste:

  class Person < ActiveRecord::Base
    validates_format_of :email, :with => 
/\A([...@\s]+)@((?:[-a-z0-9]+\.)+[a-z]{2,})\Z/i, :on => :create
  end
-- 
Posted via http://www.ruby-forum.com/.

-- 
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en.

Reply via email to