The effective TLD library is now being used for a couple of projects of mine, but I’ve had some troubles with it being almost unusable slow. I ended up waking up this morning with the revelation that the problem is that I use regexps to match domain names, but the failure of a match occurs…
Tag: regexp
Is there any way to access the match text in MySQL rlike selects?
Hi. I am doing a select like this in MySQL 5: select * from foo where bar rlike ‘(.*),(.*)’; The specific example here is made up. Anyway, I’d like to be able to get to the matched text from bar, like I can with various languages regexp libraries. Is this functionality exposed at all in…