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]*[\]])
link|improve this question

55% accept rate
2  
You are getting downvotes because this is a really unclear question. Your regex doesn't look anything like what you are trying to match. Give some examples of inputs and expected outputs – Oskar Kjellin Aug 11 '11 at 20:15
1  
Because you tagged this question "brackets" and "square-bracket", I feel compelled to mention that a regular expression is strictly not powerful enough to match balanced pairs of any token, including parentheses, brackets, braces, or anything else. – Daniel Pryden Aug 11 '11 at 20:20
I solved my problem in this way: regex = new Regex(@"([[][\w]*[]])[ ]{1,}([[][\w]*[]])"); m = regex.Match(Object.Text); if (m.Success) { ... } Thanks. – Gandarez Aug 11 '11 at 20:49
feedback

2 Answers

/\[XPTO_?XPTO\]/

is about all I can figure out of what you want.

link|improve this answer
But there are no optional blank spaces, brackets and underscores here – Oskar Kjellin Aug 11 '11 at 20:19
Ok. edited to make the _ optional. OP doesn't say the brackets are optional, just the underscore and space between brackets. – Marc B Aug 11 '11 at 20:21
True, missed that. Wonder if he didn't mean that it should repeated as well – Oskar Kjellin Aug 11 '11 at 20:22
feedback

I would say:

\[XPTO_?XPTO]\s*\[XPTO_?XPTO]

Some examples of what it will match:

[XPTO_XPTO] [XPTO_XPTO]
[XPTO_XPTO][XPTO_XPTO]
[XPTOXPTO][XPTOXPTO]
[XPTO_XPTO]   [XPTOXPTO]
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.