up vote 1 down vote favorite

I have a database table with a column where every entry is a regular expression. For example, the rows in my table look like this:

table: email_address_templates email_address: /*.google.com/ email_address: /*.reddit.com/ email_address: /*.ac.uk/

I want to be able to search through this table, and find if a particular string matches one of the regular expressions.

In ruby, it would look like this:

EmailAddressTemplate.all.select do |ea|
  ea.match "james@something.else.ac.uk"
end

I am wondering if there is a way to do a similar thing in pure mysql.

link|flag

75% accept rate

2 Answers

up vote 2 down vote accepted
select email_address
from email_address_templates
where "james@something.else.ac.uk" RLIKE email_address_templates;
link|flag
up vote 0 down vote

MySQL can handle POSIX regular expressions.

However, these are pretty limited compared to Ruby's, so you will have to make sure everything is compatible.

link|flag

Your Answer

get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.