字符分割
Future<Iterable<String>> letterSplit(str) => compute(
(str) => RegExp(r'\p{L}+', unicode: true)
.allMatches(str)
.map((e) => e[0])
.where((e) => e != null)
.cast(),
str,
);
Future<Iterable<String>> letterSplit(str) => compute(
(str) => RegExp(r'\p{L}+', unicode: true)
.allMatches(str)
.map((e) => e[0])
.where((e) => e != null)
.cast(),
str,
);