Text Scrapper

The idea is:

Be able to input text such a body of an email and scrape text such as labels (first name: fred lastname: fredster) and have a json of

{
first name: fred,
last name: fredster
}

My use case:

I receive a lot of emails that are just data sets with label: info \n would like to just be able throw that into a node instead writing code to parse the email body

I think it would be beneficial to add this because:

We use mailparser.io for doing parsing work like this, but sometimes its just to limited to what we need it to do especially if documents are involved. This would reduce tools needed.