Qual é a melhor maneira de dividir uma string "HELLO there HOW are YOU"
por palavras em maiúsculas (em Python)?
Então, eu acabaria com uma matriz como esta: results = ['HELLO there', 'HOW are', 'YOU']
EDITAR:
Eu tentei:
p = re.compile("\b[A-Z]{2,}\b")
print p.split(page_text)
Mas não parece funcionar.
re.split()
?