PHP:利用 preg_replace 删除表情符号
正在寻找一种简单的方法来从 Instagram 评论中删除表情符号? preg_replace 提供了一个简化的解决方案。
preg_replace 的使用
Enter ofCode 建议参考 wiki 以深入了解表情符号删除。避免以前无效的 SO 答案的麻烦,并为 Instagram 照片标题使用自定义正则表达式:
<code class="php">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); // Match Miscellaneous Symbols $regexMisc = '/[\x{2600}-\x{26FF}]/u'; $clean_text = preg_replace($regexMisc, '', $clean_text); // Match Dingbats $regexDingbats = '/[\x{2700}-\x{27BF}]/u'; $clean_text = preg_replace($regexDingbats, '', $clean_text); return $clean_text; }</code>
注意:虽然此功能涵盖了广泛的表情符号,但它可能无法捕获由于可用的表情符号数量众多,因此出现了各种变化。有关表情符号的完整列表,请参阅 unicode.org。
以上是如何在 PHP 中使用 preg_replace 有效地从 Instagram 评论中删除表情符号?的详细内容。更多信息请关注PHP中文网其他相关文章!