remove_emoji 0.0.10 remove_emoji: ^0.0.10 copied to clipboard
Dart and flutter package accurately replace/remove emojis in text
Remove Emoji π’
Dart package accurately replace/remove emojis in text. Remove-emoji heavily inspired by NodeJS package emoji-regex.
Usage #
A simple usage example:
import 'package:remove_emoji/remove_emoji.dart';
void main() {
var word = 'π€£hπeπlπͺlπoπ³π€π¨βπ¦°π€ΆπΏ π§ββοΈππ₯π―π¦π₯π₯ππ°π§π¨π§πwπ€·ββοΈoπrπ€ͺlπ€¦ββοΈdπΈπ€ππππΎπ€π€©π’ππ‘ππ§ππππ§πππ€ππ₯±';
var remove = RemoveEmoji();
// with trim
print(remove.clean(word));
// without trim
print(remove.clean(word,'', false));
// or use extension π€
// with trim
print(word.removEmoji);
// without trim
print(word.removEmojiNoTrim);
}
output
hello world
hello world
Contribution #
Happy π to recieve or provide contributions related to this package.
Features and bugs #
Please file feature requests and bugs at the issue tracker.