I got an example string:
"Santonio-Spurs: a great basketball team"
What is the easiest way to split it by space
and 'symbol :'
Should I split it by space
first and then split it by symbol : ?
The output I expected is:
['Santonio-Spurs', 'a', 'great', 'basketball', 'team']