I'm looking for anything in between these; '|' in data I scraped from a website. I've noticed, that '|' seperates all the stuff I'm interested in.
["{somethingsomething|title=hello there!\n|subtitle=how are you\n|subsubtitle=I'm good, thanks\n}"]
I want to print:
title=hello there!
subtitle=how are you
subsubtitle= I'm good, thanks
I think I should use look-behind and look-ahead, like this, but when it's in between the '|' characters, then it doesn't work.
I guess it's something like:
(?<=title=)(.*)(?=subtitle=)
(I'm very new to RegEx, but eager to learn!)