I am trying to parse text using pyparsing. My function is shown below. Firstly, I construct a list containing all the terms in my dictionary (a dictionary of commonly used terms in my website). Then I set my grammar to be this list of commonly used words. Then I construct the ZeroOrMore object with the grammar. Finally, I parse the string and I should get the matches found in my string. However, it throws a ParseException instead complaining that end of text was expected.
def map_dict_words(self, pbody):
dict_terms = [term.term for term in Dictionary.objects()]
look_for_these = oneOf(dict_terms, caseless=True).setResultsName("dict_words")
parseobj = ZeroOrMore(look_for_these)
matches = parseobj.parseString(pbody, parseAll=True)
print matches
According to the FAQ in pyparsing's homepage http://pyparsing-public.wikispaces.com/FAQs if I want the parser to parse the entire string I should either put StringEnd() in my grammar or use the optional arg parseAll=True. If I remove parseAll=True from my code it works but it doesn't parse the entire string.
Any ideas?