Regex to remove a word or capture everything after word

Could anybody be so kind as to provide me a regex that would remove the word "Posted in" from the scraper result. Or capture the data after the word "Posted in"

i have tried to find the solution for over a day now and iv run into a wall.

thank you in advance

Hi,

Please try the following:

(?<=Posted in )[^]+

ok will give it a go