Gets character count excluding emojis
static int getCleanCharacterCount(String text) { return text.replaceAll(_emojiPattern, '').length; }