Tagged Questions
The rlike tag has no wiki summary.
2
votes
1answer
78 views
How to use RLIKE with Doctrine 2?
I'm using Doctrine 2 (Doctrine ORM 2.1, to be more precise) with MySQL and want to find entries, beginning with a number. With native SQL I would write something like:
SELECT * FROM table WHERE name ...
0
votes
0answers
28 views
Does MySQL RLIKE allow {min,max} after square bracket character groups?
Does MySQL's "rlike" directive process standard curly bracket min max pair combos after square bracket character groups?
0
votes
3answers
238 views
MYSQL REGEXP/RLIKE Advice?
I have a table called "scholarships" that has a field named "majors" which contains comma separated major names for the majors the scholarship is related too.
Let's say the field could contain one ...
0
votes
1answer
338 views
Need MySQL RLIKE expression to exclude certain strings ending in particular characters
So I've been working with RLIKE to pull some data in a new application and mostly enjoying it.
To date I've been using RLIKE queries to return 3 types of results (files, directories and everything).
...
0
votes
2answers
2k views
Negate Regex in MySQL rlike Expression
I want to match any line that does not end with 'CA' or 'CA[any number]'. How can I do that using rlike in MySQL? (Note it doesn't support ?! etc).
Here's the regex for a positive match, I just ...