Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to understand, is my expression in brackets. I create such regExp -

public static final String complexValue = "([-]?[(].+[)])"

But I have fail on such input string -

String st = "(4+6)+(3)"

Is there a way to create such regExp, that string (5+x) matches it and string (4+6)+(3) no.

share|improve this question
Why not plagiarize this question: stackoverflow.com/questions/14300590/… – Will Jan 13 at 14:52
Try this: [-]?[(][0-9][+][a-b,A-z][)] – Grijesh Chauhan Jan 13 at 14:57

2 Answers

up vote 2 down vote accepted

Literal answer is yes: "^\\(5\\+x\\)$" does what you asked, but not what you want.

The problem is, it's unclear what you want for ((4)+(6)): should it match? Do you want to allow potentially infinite nesting of parentheses, or just a pair of outer parentheses with no inner parentheses allowed?

In the first case, your grammar is irregular, so regular expressions are unable to parse it. (I seem to recall that there are "irregular regular expression" dialects, but IIRC java implementation is not among them).

In the second case, something like "^\\([^)]+\\)$" will do the job.

share|improve this answer
unfortunately, ((4)+(6)) should match=( thank for your answer. – Mary Ryllo Jan 13 at 15:06
So, there is no way, as to count brackets? – Mary Ryllo Jan 13 at 15:08
It depends on what else you want to accept or reject, i.e. how much will you tolerate false positives and false negatives. E.g. you can use JEP (a full-featured math expression parser), with an additional requirement that a valid expression is within parentheses. Counting brackets is simple, but it won't reject (4+(6-)), for example. – Anton Kovalenko Jan 13 at 15:17
@Anton “Counting brackets is simple” – in regular expressions? It’s actually impossible. Sure, you can use non-regular extensions to match parentheses (but not to count them) but I wouldn’t call it simple. – Konrad Rudolph Jan 13 at 15:25
@KonradRudolph I assumed that OP meant "counting brackets manually, in a loop", maybe in addition to regexp match, and doing this (ensuring that the counter never drops to 0) is simple. – Anton Kovalenko Jan 13 at 15:27
show 1 more comment

So you want to match an addition of two numbers surrounded by parentheses? Then the following should work.

^\(\-?\d+\+\-?\d+\)$
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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