The XML Text Extractor strips XML markup and returns the text content of all elements, or optionally only those matching a specified tag name. Useful for extracting content from XML feeds, SOAP responses, or data exports without needing to write code.
Pull readable text out of XML without writing a parser. For converting XML to JSON, try the XML to JSON converter.
RSS titles
Input
<item><title>First Post</title></item><item><title>Second Post</title></item>
Output
First Post Second Post
Strip HTML tags and extract the plain text content.
Convert XML documents to a JSON representation.
Format, beautify, and validate XML documents.
Extract all email addresses from any block of text.
Extract all hashtags from social media posts or any text.
Extract values from JSON by key path.