I need to match entries like {@x anything} in strings like a b c 1 225 {@x anything here1} test test {@x blabla} xyz test {@x any characters here}. I tried \{(@x ([^\}].*\w+(\.*)\s*)*)\} so far, but this is not really what I want and I am kinda stuck :(
So that should get:
anything here1
blabla
any characters here
I tried .... so far