Skip to content

Instantly share code, notes, and snippets.

@dardanxhymshiti
Last active July 3, 2020 14:33
Show Gist options
  • Save dardanxhymshiti/67eeabef3107366d50addee1e17820d5 to your computer and use it in GitHub Desktop.
Save dardanxhymshiti/67eeabef3107366d50addee1e17820d5 to your computer and use it in GitHub Desktop.
def get_listed_items_with_colon(text):
import re
list_of_items = []
list_of_sentences = re.split('\.|\?|\!', text)
for sentence in list_of_sentences:
if ':' in sentence:
start_index = sentence.find(':')
sub_sentence = sentence[start_index+1:]
list_of_items.append([word.strip() for word in sub_sentence.split(',')])
return list_of_items
# Test
text = """The house has everything I need: two bedrooms, a backyard, and a garage. I have several favorite genres of movies: drama, science fiction, and mystery."""
get_listed_items_with_colon(text)
# [ ['two bedrooms', 'a backyard', 'and a garage'], ['drama', 'science fiction', 'and mystery'] ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment