I need a regular expression to select all the text between two outer brackets.

Example: some text(text here(possible text)text(possible text(more text)))end text

Result: (text here(possible text)text(possible text(more text)))

I've been trying for hours, mind you my regular expression knowledge isn't what I'd like it to be :-) so any help will be gratefully received.

link|improve this question
A short one: \(.+\) – some Feb 13 '09 at 15:57
1  
Wrong. Fails to match "a(b)c(d)e" correctly. – Christian Klauser Feb 13 '09 at 16:03
2  
@SealedSun: You are correct that it fail if the source isn't formated as the specification the OP described. – some Feb 13 '09 at 16:12
feedback

12 Answers

up vote 28 down vote accepted

Regular expressions are the wrong tool for the job because you are dealing with nested structures, i.e. recursion.

But there is a simple algorithm to do this, which I described in this answer to a previous question.

link|improve this answer
I was toying with this idea but thought I might be able to do it with RegExp. Will go back to my original plan. Thanks everyone – DaveF Feb 13 '09 at 16:25
2  
.NET's implementation has [Balancing Group Definitions msdn.microsoft.com/en-us/library/… which allow this sort of thing. – DGGenuine Jun 13 '10 at 4:08
graet idea without brackets, thanks! – YogiZoli Mar 26 at 1:54
feedback
[^\(]*(\(.*\))[^\)]*

[^\(]* matches everything that isn't an opening bracket at the beginning of the string, (\(.*\)) captures the required substring enclosed in brackets, and [^\)]* matches everything that isn't a closing bracket at the end of the string. Note that this expression does not attempt to match brackets; a simple parser (see dehmann's answer) would be more suitable for that.

link|improve this answer
the bracket inside the class does not need to be escaped. Since inside it is not a metacharacted. – José Leal Feb 13 '09 at 15:59
1  
Why not only: \(.+\) – some Feb 13 '09 at 16:01
This expr fails against something like "text(text)text(text)text" returning "(text)text(text)". Regular expressions can't count brackets. – Christian Klauser Feb 13 '09 at 16:02
@José: You are right of course. But for consistency, I just escape them anyway =) – Zach Scrivena Feb 13 '09 at 16:28
@some: That works too. The longer version matches the whole string explicitly though. – Zach Scrivena Feb 13 '09 at 16:31
show 1 more comment
feedback
(?<=\().*(?=\))

If you want to select text between two matching parentheses, you are out of luck with regular expressions. This is impossible.

This regex just returns the text between the fist opening and the last closing parentheses in your string.

link|improve this answer
What do the "<=" and "=" signs mean? What regexp engine is this expression targeting? – Christian Klauser Feb 13 '09 at 15:58
This is look-around, or more correctly "zero width look-ahead/look-behind assertions". Most modern regex engines support them. – Tomalak Feb 13 '09 at 16:01
According to the OP's example, he wants to include the outermost parens in the match. This regex throws them away. – Alan Moore Feb 15 '09 at 5:09
@Alan M: You are right. But according to the question text, he wants everything between the outermost parens. Pick your choice. He said he'd been trying for hours, so didn't even consider "everything including the outermost parens" as the intention, because it is so trivial: "(.*)". – Tomalak Feb 15 '09 at 10:29
feedback

The answer depends on whether you need to match matching sets of brackets, or merely the first open to the last close in the input text.

If you need to match matching nested brackets, then you need something more than regular expressions. - see @dehmann

If it's just first open to last close see @Zach

Decide what you want to happen with:

abc ( 123 ( foobar ) def ) xyz ) ghij

You need to decide what your code needs to match in this case.

link|improve this answer
feedback

Check balancing groups, they are done for this.

link|improve this answer
4  
That is, if you are are .net developer. – zespri Nov 10 '10 at 20:41
feedback

It is actually possible to do it using .net regular expressions. But it is not trivial, so read carefully.

You can read a nice article here You also may need to read up on .net regular expressions. You can start reading here

Angle brackets <> were used because they do not require escaping. Regular expression looks like this:

        <
        [^<>]*
        (
                    (
                                (?<Open><)
                                [^<>]*
                    )+
                    (
                                (?<Close-Open>>)
                                [^<>]*
                    )+
        )*
        (?(Open)(?!))
        > 
link|improve this answer
feedback

try this:

(?<=(?:[^(]|^))(.*)(?=[^)]|$)

group 1

link|improve this answer
feedback

I needed to get the innermost brackets... To evaluate them and substitute their results...

((?<=(?:[(]))[^(].*?(?=[)]))

Posting it here so that I an retrive it later if needed...

link|improve this answer
Sorry that was half.. here's the one which captures empty brackets also... easier to replace values and removing brackets at the same time... ((?:(?<=(?:[(]))[^(].*?(?=[)])))|() Best regards, DD – DD DD Jul 28 '09 at 10:54
feedback

In case someone is wondering how to match text within square brackets lets say you have : some test [othe test] and some other test [text 2]

and you want to get the text within square brackets , you would use [(([^]])*)]

link|improve this answer
with the escape character "\" in front.. – inmatevip Feb 10 '11 at 6:50
feedback
\([^\(]+(\([^\(\)]+?\)[^\(]+)*[^\)]+\)

I used it for multiple line. I hope will help others.

link|improve this answer
feedback

Here is exactly how you do it:

Somewhere on the top:

using System.Text.RegularExpressions;

Then:

string Pattern = @"\((.*)\)";
Match m = Regex.Match(Input, Pattern);
Console.WriteLine("(" + m.Index + ", " + m.Length + ")" + " ---> " + m.Value);

This will match first opening with the last closing brackets.

So this will take something like "hello(sometext(some more) after text) and more) and some" will return the bold part.
A simple count of how many opening and closing brackets you have puts you one step closer to knowing if they match...

link|improve this answer
feedback

This is the definitive regex:

\(
(?<arguments> 
(  
  ([^\(\)']*) |  
  (\([^\(\)']*\)) |
  '(.*?)'

)*
)
\)

Example:

input: ( arg1, arg2, arg3, (arg4), '(pip' )

output: arg1, arg2, arg3, (arg4), '(pip'

note that the '(pip' is correctly managed as string. (tried in regulator: http://sourceforge.net/projects/regulator/)

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.