-
-
Save msonowal/9ad0dc9ecba506cdbf1a1bbd518d2d64 to your computer and use it in GitHub Desktop.
MySQL Function to remove accents and special characters
This file contains hidden or 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
DROP FUNCTION IF EXISTS fn_remove_accents; | |
DELIMITER | | |
CREATE FUNCTION fn_remove_accents( textvalue VARCHAR(10000) ) RETURNS VARCHAR(10000) | |
BEGIN | |
SET @textvalue = textvalue; | |
-- ACCENTS | |
SET @withaccents = 'ŠšŽžÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÑÒÓÔÕÖØÙÚÛÜÝŸÞàáâãäåæçèéêëìíîïñòóôõöøùúûüýÿþƒ'; | |
SET @withoutaccents = 'SsZzAAAAAAACEEEEIIIINOOOOOOUUUUYYBaaaaaaaceeeeiiiinoooooouuuuyybf'; | |
SET @count = LENGTH(@withaccents); | |
WHILE @count > 0 DO | |
SET @textvalue = REPLACE(@textvalue, SUBSTRING(@withaccents, @count, 1), SUBSTRING(@withoutaccents, @count, 1)); | |
SET @count = @count - 1; | |
END WHILE; | |
-- SPECIAL CHARS | |
SET @special = '!@#$%¨&*()_+=§¹²³£¢¬"`´{[^~}]<,>.:;?/°ºª+*|\\'''; | |
SET @count = LENGTH(@special); | |
WHILE @count > 0 do | |
SET @textvalue = REPLACE(@textvalue, SUBSTRING(@special, @count, 1), ''); | |
SET @count = @count - 1; | |
END WHILE; | |
RETURN @textvalue; | |
END | |
| | |
DELIMITER ; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment