Created
March 19, 2016 22:49
-
-
Save mcanvar/a9fc379d4e833fc03918 to your computer and use it in GitHub Desktop.
mysql regex replace function
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
DELIMITER $$ | |
CREATE FUNCTION `regex_replace`(pattern VARCHAR(1000),replacement VARCHAR(1000),original VARCHAR(1000)) | |
RETURNS VARCHAR(1000) | |
DETERMINISTIC | |
BEGIN | |
DECLARE temp VARCHAR(1000); | |
DECLARE ch VARCHAR(1); | |
DECLARE i INT; | |
SET i = 1; | |
SET temp = ''; | |
IF original REGEXP pattern THEN | |
loop_label: LOOP | |
IF i>CHAR_LENGTH(original) THEN | |
LEAVE loop_label; | |
END IF; | |
SET ch = SUBSTRING(original,i,1); | |
IF NOT ch REGEXP pattern THEN | |
SET temp = CONCAT(temp,ch); | |
ELSE | |
SET temp = CONCAT(temp,replacement); | |
END IF; | |
SET i=i+1; | |
END LOOP; | |
ELSE | |
SET temp = original; | |
END IF; | |
RETURN temp; | |
END$$ | |
DELIMITER ; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment