You tagged your question "regex" but I do not recommend the use of regular expressions to try to solve this. This is best handled with a simple state machine.
Here is a simple state machine adequate to handle your example. If you try it on other text you will likely find cases it doesn't handle; I hope that you will find its design clear, and you will have no trouble modifying it to suit your purpose.
import string
s = "the qUiCk BROWN fox:: jumped. over , the lazy dog."
s_correct = "The quick brown fox: jumped. Over, the lazy dog."
def chars_from_lines(lines):
for line in lines:
for ch in line:
yield ch
start, in_sentence, saw_space = range(3)
punct = set(string.punctuation)
punct_non_repeat = punct - set(['.', '-'])
end_sentence_chars = set(['.', '!', '?'])
def edit_sentences(seq):
state = start
ch_punct_last = None
for ch in seq:
ch = ch.lower()
if ch == ch_punct_last:
# Don't pass repeated punctuation.
continue
elif ch in punct_non_repeat:
ch_punct_last = ch
else:
# Not punctuation to worry about, so forget the last.
ch_punct_last = None
if state == start and ch.isspace():
continue
elif state == start:
state = in_sentence
yield ch.upper()
elif state == in_sentence and ch in end_sentence_chars:
state = start
yield ch
yield ' '
elif state == in_sentence and not ch.isspace():
yield ch
elif state == in_sentence and ch.isspace():
state = saw_space
continue
elif state == saw_space and ch.isspace():
# stay in state saw_space
continue
elif state == saw_space and ch in punct:
# stay in state saw_space
yield ch
elif state == saw_space and ch.isalnum():
state = in_sentence
yield ' '
yield ch
#with open("input.txt") as f:
# s_result = ''.join(ch for ch in edit_sentences(chars_from_lines(f)))
s_result = ''.join(ch for ch in edit_sentences(s))
print(s_result)
print(s_correct)
"qUick BROWN"was"oReO DISNEY orlando florida herman melville". What should be capitalised? Whatever you write is going to be incomplete. Are you processing a file at a time? Do you need to track whether sentences continue over multiple lines? – jozzas Dec 7 '12 at 4:23