Extracts a single value from the given HTML using this selector
String? extractSingle(String html) { final results = extract(html); return results.isNotEmpty ? results.first : null; }