fork download
  1. import re
  2. p = re.compile(r'[^\W\d_]+')
  3. print(p.findall("02_Sektion_München_Gruppe_Süd"))
Success #stdin #stdout 0.04s 9524KB
stdin
Standard input is empty
stdout
['Sektion', 'München', 'Gruppe', 'Süd']