remove_emoji

Creator: coderz1093

Last updated:

Add to Cart

Description:

remove emoji

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);
}
copied to clipboard
output
hello world
hello world
copied to clipboard
Contribution #
Happy 😍 to recieve or provide contributions related to this package.
Features and bugs #
Please file feature requests and bugs at the issue tracker.

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.