So string looks like that:
abc_#xoxo#_xyz
I want to pull out everyting except _#*#_ and get them in two match results (abc and xyz). I made a regexp to get stuff from inside:
(?<=_#)[^}]*(?=#_)
I have struggled with it for quite a while and have no idea how to catch that, suggestions?