I need to take a string, and shorten it to 140 characters.
Currently I am doing:
if len(tweet) > 140: tweet = re.sub(r\"\\s+\", \" \", tweet)
Save two characters and use an elipsis (…, 0x2026) instead of three dots!
…