提取字符串中的字母 Extract letters from string
static String extractLetters(String str) { return str.replaceAll(RegExp(r'[^a-zA-Z]'), ''); }