Created
June 9, 2013 19:42
-
-
Save quantizer/5744907 to your computer and use it in GitHub Desktop.
How to remove emoji from text.
Source: http://stackoverflow.com/questions/12807176/php-writing-a-simple-removeemoji-function Tested. Works.
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
function removeEmoji($text) | |
{ | |
$cleanText = ""; | |
// Match Emoticons | |
$regexEmoticons = '/[\x{1F600}-\x{1F64F}]/u'; | |
$cleanText = preg_replace($regexEmoticons, '', $text); | |
// Match Miscellaneous Symbols and Pictographs | |
$regexSymbols = '/[\x{1F300}-\x{1F5FF}]/u'; | |
$cleanText = preg_replace($regexSymbols, '', $cleanText); | |
// Match Transport And Map Symbols | |
$regexTransport = '/[\x{1F680}-\x{1F6FF}]/u'; | |
$cleanText = preg_replace($regexTransport, '', $cleanText); | |
return $cleanText; | |
} |
Please excuse my lack of understanding around how emoji Unicode works.
This is nice and clean but doesn't work for the "hugging_face" emoji: https://emojipedia.org/hugging-face
Also not working for "rolling-on-the-floor-laughing" one https://emojipedia.org/rolling-on-the-floor-laughing/
not work
سلام تست شد 🥊dolor 🤒sit amet, consectetur adipiscing elit.
Looks like it's time to update this code :)
work very well
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
very very good. TNKs