How can I build a python pyparsing structure that matches against a particular string ending. For example, suppose I want to find all words that end in 'ing'. The following does NOT work:
ing_ending = Word(alphas) + Literal("ing") + White();
ing_ending.parseString("jumping")
This would be pretty easy to do in python and regex but gives me trouble in pyparsing.