static String extractAlphanumeric(String message) { return alphaNumericRegExp.allMatches(message).map((m) => m.group(0)!).join(); }