List<String> extractDetections(String text, RegExp regExp) { return regExp.allMatches(text).map((match) => match.group(0)!).toList(); }