非字母數(shù)字字符如下 –
@,!,#,&,(),?, /
登錄后復(fù)制
MySQL 中沒有內(nèi)置函數(shù)可以從字符串中刪除非字母數(shù)字字符。因此,我們創(chuàng)建一個刪除所有非字母數(shù)字字符的函數(shù)。函數(shù)聲明和定義如下。
mysql> delimiter // mysql> CREATE FUNCTION RemoveNonAlphaNumeric( s CHAR(255) ) RETURNS CHAR(255) DETERMINISTIC -> BEGIN -> DECLARE var1, length SMALLINT DEFAULT 1; -> DECLARE result CHAR(255) DEFAULT ''; -> DECLARE ch CHAR(1); -> SET length = CHAR_LENGTH( s ); -> REPEAT -> BEGIN -> SET ch = MID( s, var1, 1 ); -> IF ch REGEXP '[[:alnum:]]' THEN -> SET result =CONCAT(result ,ch); -> END IF; -> SET var1 = var1 + 1; -> END; -> UNTIL var1 >length END REPEAT; -> RETURN result ; -> END // Query OK, 0 rows affected (0.10 sec)
登錄后復(fù)制
名為“RemoveNonAlphaNumeric”的函數(shù)從字符串中刪除所有非字母數(shù)字字符。為了進(jìn)行檢查,我們現(xiàn)在將調(diào)用用戶定義的函數(shù)。
mysql>delimiter ; mysql> select 'My Email id is test@123!',RemoveNonAlphaNumeric('My Email id is test@123!');
登錄后復(fù)制
以下是顯示使用函數(shù)“RemoveNonAlphaNumeric”成功刪除字母數(shù)字字符的輸出。
+--------------------------+---------------------------------------------------+ | My Email id is test@123! | removeNonAlphaNumeric('My Email id is test@123!') | +--------------------------+---------------------------------------------------+ | My Email id is test@123! | MyEmailidistest123 | +--------------------------+---------------------------------------------------+ 1 row in set (0.15 sec)
登錄后復(fù)制
在此字符串(MyEmailidistest123)中,沒有@和!現(xiàn)在有符號,這意味著該功能工作正常。
以上就是如何從 MySQL 中的字符串中刪除所有非字母數(shù)字字符?的詳細(xì)內(nèi)容,更多請關(guān)注www.92cms.cn其它相關(guān)文章!