Hello!
I am trying to match {*.....} in a string and wrote the following:
/{\*\[}]*?}/
but it don't work. I can't figure out why, since everyting should be ok.
// are the delemiters... ok
{ is a special char and need to be backslashed --> {
\ too --> \
too --> *
\ too --> \
then i want to match everything to the next closing }
so I use the negating character class [}] (the backslash is maybe not nedded but it should neither be wrong), with minimun matching style ?
and last } needs backslahing too: }
Can somebody give me a hint why it don't work or test it out to see if it's maybe a bug of the software I have installed?
Thank you!