Better Programming

Advice for programmers.

Follow publication

Member-only story

How to detect Emojis With JavaScript

Kesk -*-
Better Programming
Published in
3 min readFeb 8, 2022
Photo by Pixabay from Pexels

I recently filtered a vast Twitter timeline to analyze it using a deep neural network. As you know, tweets can contain different kinds of content, including emojis. So one of the first steps was to clean the data, in this case removing all emoticons from the timeline.

Although this can be done in many ways, I will show how to do it with JavaScript because it is straightforward and fast, so let’s start.

As you might be guessing from the subtitle of this post, we will use regular expressions to do it.

Modern browsers support Unicode property, which allows you to match emojis based on their belonging in the Emoji Unicode category. For example, you can use Unicode property escapes like \p{Emoji} or \P{Emoji} to match/no match emoji characters. Note that 0123456789#* and other characters are interpreted as emojis using the previous Unicode category. Therefore, a better way to do this is to use the {Extended_Pictographic} Unicode category that denotes all the characters typically understood as emojis instead of the {Emoji} category.

Let’s see some examples.

Use \p{} to match the Unicode characters

If you use the “Emoji” Unicode category, you may get incorrect results:

const withEmojis = /\p{Emoji}/u
withEmojis.test('😀');
//true
withEmojis.test('ab');
//false
withEmojis.test('1');
//true opps!

Therefore it is better to use the Extended_Pictographic scape as previously mentioned:

const withEmojis = /\p{Extended_Pictographic}/u
withEmojis.test('😀😀');
//true
withEmojis.test('ab');
//false
withEmojis.test('1');
//false

Use \P{} to negate the match.

const noEmojis = /\P{Extended_Pictographic}/u
noEmojis.test('😀');
//false
noEmojis.test('1212');
//false

As you can see, this is an easy way to detect Emojis, but if you use our previous withEmojis regex with a grouped emoji, you will be surprised by the result.

Create an account to read the full story.

The author made this story available to Medium members only.
If you’re new to Medium, create a new account to read this story on us.

Or, continue in mobile web

Already have an account? Sign in

Kesk -*-
Kesk -*-

Written by Kesk -*-

Software engineer - software Enthusiast - Sci-Fi writer.

No responses yet

Write a response