I have to cut a unicode string which is actually an article (contains sentences) I want to cut this article string after Xth sentence in python.
A good indicator of a sentence ending is that it ends with full stop (".") and the word after start with capital name. Such as
myarticle == "Hi, this is my first sentence. And this is my second. Yet this is my third."
How can this be achieved ?
Thanks