Was ist der beste Weg, um einen String "HELLO there HOW are YOU"
nach Großbuchstaben zu teilen (in Python)?
Am Ende hätte ich also ein Array wie das folgende: results = ['HELLO there', 'HOW are', 'YOU']
BEARBEITEN:
Ich habe versucht:
p = re.compile("\b[A-Z]{2,}\b")
print p.split(page_text)
Es scheint jedoch nicht zu funktionieren.
re.split()
?