You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
THIS IS NOT AN ISSUE. BUT I DON"T KNOW HOW TO ADD LABEL.
I really like this project it helps me a lot.
I'm suppose to change emoji with particular character say "?".
I've achieved it by creating method :
/**
* Replace all emojis with character
*
* @param str the string to process
* @param chr the character to be replaced
* @return the string with replaced character
*/
public static String replaceAllEmojis(String str, final String chr) {
EmojiParser.EmojiTransformer emojiTransformer = new EmojiParser.EmojiTransformer() {
public String transform(EmojiParser.UnicodeCandidate unicodeCandidate) {
return chr;
}
};
return parseFromUnicode(str, emojiTransformer);
}
Can you please add this function? I'm using it and its working fine.
Thanks.
The text was updated successfully, but these errors were encountered:
THIS IS NOT AN ISSUE. BUT I DON"T KNOW HOW TO ADD LABEL.
I really like this project it helps me a lot.
I'm suppose to change emoji with particular character say "?".
I've achieved it by creating method :
Can you please add this function? I'm using it and its working fine.
Thanks.
The text was updated successfully, but these errors were encountered: