Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm looking for a simple function that would remove Emoji characters from instagram comments. What I've tried for now (with a lot of code from examples I found on SO & other websites) :

// PHP class
public static function removeEmoji($string)
{
    // split the string into UTF8 char array
    // for loop inside char array
        // if char is emoji, remove it
    // endfor
    // return newstring
}

Any help would be appreciated

share|improve this question
please tell us a little more in depth what you have tried, because this doesn't really say much. Why is your code not working? What is your output and how does it compare to the expected output? – Jon Taylor Oct 9 '12 at 19:38
1  
en.wikipedia.org/wiki/Emoji read this first please – EaterOfCorpses Oct 9 '12 at 19:43
@JonTaylor ive tried different solutions found on SO. Actually none seems to work well. – sglessard Oct 9 '12 at 20:43

3 Answers

up vote 3 down vote accepted

I think the preg_replace function is the simpliest solution.

As @EaterOfCorpses suggests, I read the wiki page and coded new regex since none of SO (or other websites) answers seemed to work for Instagram photo captions (API returning format) . Note: /u identifier is mandatory to match \x unicode chars.

public static function removeEmoji($text) {

    $clean_text = "";

    // Match Emoticons
    $regexEmoticons = '/[\x{1F600}-\x{1F64F}]/u';
    $clean_text = preg_replace($regexEmoticons, '', $text);

    // Match Miscellaneous Symbols and Pictographs
    $regexSymbols = '/[\x{1F300}-\x{1F5FF}]/u';
    $clean_text = preg_replace($regexSymbols, '', $clean_text);

    // Match Transport And Map Symbols
    $regexTransport = '/[\x{1F680}-\x{1F6FF}]/u';
    $clean_text = preg_replace($regexTransport, '', $clean_text);

    return $clean_text;
}
share|improve this answer
Works perfectly thanks. – Mikepote Mar 15 at 11:04

You could just use str_replace().

$emojiArray = array("&0123","&0234",etc. for all emoji);
$strippedComment = str_replace($emojiArray,"",$originalComment);
share|improve this answer

Since Emoji characters use the private use area of unicode, you could use preg_replace() to remove that entire region of encoded characters from U+E000 to U+F8FF.

function removeEmoji($string) {
    return preg_replace('/&#x(e[0-9a-f][0-9a-f][0-9a-f]|f[0-8][0-9a-f][0-9a-f])/i', '', $string);
}
share|improve this answer
Gave a try to your function but it does not replace emojis in that example string: Back in America πŸ˜πŸ‡ΊπŸ‡Έ – sglessard Oct 9 '12 at 20:37
Can you please pastebin an html-encoded example of the instagram comments containing emoji? – jchook Oct 11 '12 at 15:15
Instagram API returns strings plain/text. Anyway I've answered to my own question, see my reply. Thanks for your help :) – sglessard Oct 11 '12 at 15:53

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.