FLUTTER ECOSYSTEM

n4ze3m/remove-emoji

Dart 或 Flutter 包准确替换/删除文本中的表情符号

remove-emoji 项目封面
Stars
9
Forks
5
最近推送(UTC)
2023年8月21日
项目状态
未归档
Muhammed Nazeem GitHub avatar
GITHUB User

Muhammed Nazeem ↗

404

@BuckthornDevInternal Server Error
语言Dart

此仓库发布的插件

使用的依赖

依赖清单 2 项
  • pedantic开发依赖^1.11.0
  • test开发依赖^1.17.3

原始 README

以下为英文项目原文快照,最新内容请访问 GitHub。

展开 / 收起项目 README

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.