开发者

Using mysql Regexp in a select statement not the where clause

开发者 https://www.devze.com 2023-01-06 03:51 出处:网络
So what i want to do is use a Regex to select only certain parts of data from a column Example : SELECT URL REGEXP \'http://\' from websitelist --(website list is a list of URL开发者_StackOverflow\'

So what i want to do is use a Regex to select only certain parts of data from a column

Example :

SELECT URL REGEXP 'http://' from websitelist --(website list is a list of URL开发者_StackOverflow's)

If I run that against the table it returns 1 foreach row in which 'htt://' was found, what I want is to return the string that matches the regexp


The REGEXP operator performs a match and returns 0 or 1 based on whether the string matched the expression or not. It does not provide a way to extract the matched portion. I don't think that there is any way to extract the matched portion.


You could use just use string functions if it's as simple as your example - just removing http://

SELECT REPLACE(URL, 'http://', '') AS url FROM websitelist;

Probably faster as there is overhead for the REGEX engine.

0

精彩评论

暂无评论...
验证码 换一张
取 消