Emoticon
Supported from ^0.1.54
Manfaatkan fungsi ini untuk menghapus Emoji atau Emoticon dari Tweet.
Cara Pakai
from frasa.preprocess import tweet text = tweet('๐ต๏ธ Frasa is #awesome ๐ @404vay, @frasaId. http://t.co/g00gl') text.emoji().remove()
// Before๐ต๏ธ Frasa is #awesome ๐ @404vay, @frasaId. http://t.co/g00gl // AfterFrasa is #awesome @404vay, @frasaId. http://t.co/g00gl
Get Emoticon List
text.emoji() # Output['๐ต๏ธ', '๐']
Count
text.emoji().count() # Output2
Get a Single Emoticon
text.emoji()[0] # Output'๐ต๏ธ'