improve sentence spliiter
Brought to you by:
petebleackley
Originally created by: christian.ledermann (code.google.com)
What steps will reproduce the problem?
the current regex SplitSentences=re.compile(u'[.!?]') splits expressions like '4.5 $US' to ['4', '$US']
split_sentences = re.compile(u'[.!?]\s+')
is more precise as it checks a whitespace following the end sentence mark