I'm trying to search for the maximum number in the series A0001, A0002, A1234, A2351, etc... The problem is that the list I'm searching in also has strings such as AG108939, E092357, AL399, 22-30597, etc...
So basically, I want the Highest A#### value in my database. I was using the following query:
@max_draw = Drawing.where("drawing_number LIKE ?", "A%")
Which was working until numbers such as AG309 started getting in the way because it starts with an A, but has a different format than what I'm looking for.
I'm assuming this should be pretty straight forward with regular expressions, but I'm new to this and don't know how to correctly write this query with a regular expression. Here are some things I've tried that just return nil:
@max_draw = Drawing.where("drawing_number LIKE ?", /A\d+/)
@max_draw = Drawing.where("drawing_number LIKE ?", "/A\d+/")
@max_draw = Drawing.where("drawing_number LIKE ?", "A[0-9]%")
On Rails 4+ with a Postgres database the general form of a RegEx query is:
Model.where("column ~* ?", 'regex')
As for the regex, it can be a general '^A\d+$'
or more specific '^A\d{4}$'
Breaking it down:
^ - string start anchor
A - literal "A"
\d+ - one or more digits (0-9)
\d{4} - exactly four digits
$ - string end anchor
Basically, the regex reads "the string should start with an A, followed by four digits and then the string should end". The final query line is:
@max_draw = Drawing.where("drawing_number ~* ?", '^A\d{4}$')
Further reading on ruby RegEx at RubyDoc or the more accessible Perl variant (used by Sublime text)