I need to match the following words
Underscore is optional, blank space between brackets are optional too.
"[XPTO_XPTO] [XPTO_XPTO]"
I tried this
[/\[/][\w][/\]/]+[ ]{1,}[/\[/][\w][/\]/]+
I resolved by this way:
([\[][\w]*[\]])[ ]{1,}([\[][\w]*[\]])