On Thu, Apr 16, 2009 at 3:39 PM, Hamid Raza
<rails-mailing-l...@andreas-s.net> wrote:
>
> hi all ,
>
> i want to check/validate email in controller, with out using model . plz
> some one help me out.
>
> thx in advance

Just use a regular expression, it could be as simple as
if params[:email] =~ /@/
  ...valid...
end

Andrew Timberlake
http://ramblingsonrails.com
http://www.linkedin.com/in/andrewtimberlake

"I have never let my schooling interfere with my education" - Mark Twain

--~--~---------~--~----~------------~-------~--~----~
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 rubyonrails-talk@googlegroups.com
To unsubscribe from this group, send email to 
rubyonrails-talk+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to