Forked from nicolasguzca/MySQL Proper case function.sql
Created
December 17, 2020 23:04
-
-
Save carlosleonam/a71fc8669d6fbff6a8af60e0e36ad200 to your computer and use it in GitHub Desktop.
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 proper; | |
SET GLOBAL log_bin_trust_function_creators=TRUE; | |
DELIMITER | | |
CREATE FUNCTION proper( str VARCHAR(128) ) | |
RETURNS VARCHAR(128) | |
BEGIN | |
DECLARE c CHAR(1); | |
DECLARE s VARCHAR(128); | |
DECLARE i INT DEFAULT 1; | |
DECLARE bool INT DEFAULT 1; | |
DECLARE punct CHAR(17) DEFAULT ' ()[]{},.-_!@;:?/'; | |
SET s = LCASE( str ); | |
WHILE i <= LENGTH( str ) DO | |
BEGIN | |
SET c = SUBSTRING( s, i, 1 ); | |
IF LOCATE( c, punct ) > 0 THEN | |
SET bool = 1; | |
ELSEIF bool=1 THEN | |
BEGIN | |
IF c >= 'a' AND c <= 'z' THEN | |
BEGIN | |
SET s = CONCAT(LEFT(s,i-1),UCASE(c),SUBSTRING(s,i+1)); | |
SET bool = 0; | |
END; | |
ELSEIF c >= '0' AND c <= '9' THEN | |
SET bool = 0; | |
END IF; | |
END; | |
END IF; | |
SET i = i+1; | |
END; | |
END WHILE; | |
RETURN s; | |
END; | |
| | |
DELIMITER ; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment