获取字符串中的第一个汉字 Get first Chinese character from string
static String? firstChineseCharacter(String str) { final match = RegExp(r'[\u4e00-\u9fa5]').firstMatch(str); return match?.group(0); }