Handling emoji Expressions (Unicode)

Source: Internet
Author: User
Tags preg
Handling emoji Expressions (Unicode)

Available for Android and IOS

/**
 * @brief kill emoji
 * @autho chenjinya@baidu.com
 * @param {string} $strText
 * @return {string} Removeemoji
 **/
static function Escapeemoji ($strText, $bool = False) {
    $preg =  '/\\\ud ([8-9a-f][ 0-9A-Z]{2})/I ';
    if ($bool = = True) {
        $boolPregRes = (Preg_match ($preg, Json_encode ($strText, True));
        return $boolPregRes;
    } else {
        $strPregRes = (preg_replace ($preg, ', Json_encode ($strText, True));
        $strRet = Json_decode ($strPregRes, true);
        return $strRet;
    }
 
Principle:

PHP is not able to parse the Unicode character after D800
The general emoji is between D800 and D8ff (Chinese is: 4E00-9FBF)

Write like this

$preg = '/[\x{d800}-\x{d8ff}]+/iu '; 

is invalid.

So it can only be converted to Unicode through Json_encode, and then the Unicode character is processed by regular, and then the normal string is reversed.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.