I'm writing a parser for some marked-up data, and I'd like to get pyparsing to discard things like start and end tags in the final result, leaving just the data.

Can I do this, or do I just have to name the value appropriately and pull them out manually?

link|improve this question

If the markup tags look like XML, also check out makeHTMLTags and makeXMLTags - these helpers do more than just add '<>'s around a string, but also build in support for embedded attributes, upper/lower case variations, and stray whitespace. – Paul McGuire Aug 15 '11 at 0:47
feedback

1 Answer

up vote 1 down vote accepted

"Suppress" is probably what you want. You can use the Suppress class explicitly, as in dont_care = Suppress(Word(alphas)) or call suppress() on any expression, dont_care = Word(alphas).suppress(). This will suppress the matched tokens from appearing in the parsed output.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.