I currently use a regex
\\\[(.*)\\\]
so if I would try to match [] it will work. But what I want is so it requires at a minimum one character between [ and ] to match my regex, but how?
Thanks!
I currently use a regex
\\\[(.*)\\\]
so if I would try to match [] it will work. But what I want is so it requires at a minimum one character between [ and ] to match my regex, but how?
Thanks!
Copyright © 2021 Jogjafile Inc.
Before matching (.*). Do a match on [^]] to match something other than the closing ].