Resumen del pedido
- Inicio
- Twisted Sister - Stay Hungry -2016- -FLAC 24-192-
- Twisted Sister - Stay Hungry -2016- -FLAC 24-192-
Twisted Sister - Stay Hungry -2016- -flac 24-192- May 2026
return result test_string = "Twisted Sister - Stay Hungry -2016- -FLAC 24-192-" parsed = parse_audio_folder_name(test_string)
# Split remaining by common separators parts = re.split(r'[-_]1,2', clean) parts = [p.strip() for p in parts if p.strip()] Twisted Sister - Stay Hungry -2016- -FLAC 24-192-
# Heuristic: first part = artist, second = album (if available) if len(parts) >= 2: result['artist'] = parts[0] result['album'] = parts[1] elif len(parts) == 1: result['album'] = parts[0] return result test_string = "Twisted Sister - Stay
# Extract year (4 digits, possibly in -YEAR- or _YEAR_) year_match = re.search(r'[-_]?(?P<year>\d4)[-_]?', clean) if year_match: result['year'] = int(year_match.group('year')) clean = re.sub(r'[-_]?\d4[-_]?', '', clean).strip(' -_') Twisted Sister - Stay Hungry -2016- -FLAC 24-192-
"Twisted Sister - Stay Hungry -2016- -FLAC 24-192-"