Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
265 views
in Technique[技术] by (71.8m points)

uppercase - Uppercasing letters after '.', '!' and '?' signs in Python

I have been searching Stack Overflow but cannot find the proper code for correcting e.g.

"hello! are you tired? no, not at all!"

Into:

"Hello! Are you tired? No, not at all!"
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

You can try this regex approach:

import re
re.sub("(^|[.?!])s*([a-zA-Z])", lambda p: p.group(0).upper(), s)
# 'Hello! Are you tired? No, not at all!'

  • (^|[.?!]) matches the start of the string ^ or .?! followed by optional spaces;
  • [a-zA-Z] matches letter directly after the first pattern;
  • use lambda function to convert the captured group to upper case;

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...