Python – RegEx for splitting text into sentences (sentence-tokenizing) [duplicate]

(?<!\w\.\w.)(?<![A-Z][a-z]\.)(?<=\.|\?)\s

Try this. split your string this.You can also check demo.

http://regex101.com/r/nG1gU7/27

Leave a Comment