Format text in Pipedream

Hi, I have message from rss feed like this:
“Watch Spy Classroom Online in HD with English Subbed, Dubbed”
How would I be able to delete 2 parts of this, 1. “Watch " and 2. " Online in HD with English Subbed, Dubbed”. which means it basically works as
“Watch {recently released anime name} Online in HD with English Subbed, Dubbed”

Hi @animefeed

First off, welcome to the Pipedream community. Happy to have you!

There are a few different ways to manipulate text in Node.js or Python.

If the structure of this text is always going to be the same, you can use Regex to parse out these fields.

You can test your regular expressions on a site like https://regex101.com then perform the actual extraction of the title in a Node.js code step.