How do I extract a certain word after a certain character in regex python?
For example: given = 'abcdefghijkl"mnop:"qfdf"gg"'
I want to get qfdf which is afer "mnop:" and before "gg". The given string is one string, no whitespace.
So far I can do \w+"mnop:" to get to qfdf"gg", but I don't know any \K function in python regex. I am also aware of using (?<=...), but this only takes a fixed width of characters.
Thanks!