Flutter 用于Unicode 13表情符号的RegExp

Flutter 用于Unicode 13表情符号的RegExp,flutter,dart,Flutter,Dart,我发现了一个例子,但它是针对Unicode 11的,有人有一个适用于Unicode 13的吗 /// A tweak regexp to pass all Emoji Unicode 11.0 /// TODO: improve this version, since it does not match the graphical bytes. static final RegExp REGEX_EMOJI = RegExp(r'(\u00a9|\u00ae|[\u2000-\u3300]

我发现了一个例子,但它是针对Unicode 11的,有人有一个适用于Unicode 13的吗

/// A tweak regexp to pass all Emoji Unicode 11.0
/// TODO: improve this version, since it does not match the graphical bytes.

  static final RegExp REGEX_EMOJI = RegExp(r'(\u00a9|\u00ae|[\u2000-\u3300]|\ud83c[\ud000-\udfff]|\ud83d[\ud000-\udfff]|\ud83e[\ud000-\udfff])');

检查这个github我想这有你想要的我会喜欢下面。

检查这个github我想这有你想要的我会喜欢下面。


我试过了,但是我得到了一个
使用有效的正则表达式语法。dart(有效的正则表达式)
error.sorry look promisingtanks为尝试unicode网站而关闭,因此很难找到它。我尝试了,但得到了一个
使用有效正则表达式语法的提示。dart(valid_regexps)
error.sorry look promisingtanks为尝试unicode网站而关闭,因此很难找到它。