mirror of https://github.com/sgoudham/Enso-Bot.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
765 B
Python
28 lines
765 B
Python
"""This file contains assorted general utility functions used by other
|
|
modules in the PyAIML package.
|
|
|
|
"""
|
|
|
|
def sentences(s):
|
|
"""Split the string s into a list of sentences."""
|
|
try: s+""
|
|
except: raise TypeError( "s must be a string" )
|
|
pos = 0
|
|
sentenceList = []
|
|
l = len(s)
|
|
while pos < l:
|
|
try: p = s.index('.', pos)
|
|
except: p = l+1
|
|
try: q = s.index('?', pos)
|
|
except: q = l+1
|
|
try: e = s.index('!', pos)
|
|
except: e = l+1
|
|
end = min(p,q,e)
|
|
sentenceList.append( s[pos:end].strip() )
|
|
pos = end+1
|
|
# If no sentences were found, return a one-item list containing
|
|
# the entire input string.
|
|
if len(sentenceList) == 0: sentenceList.append(s)
|
|
return sentenceList
|
|
|