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 am looking for a regex pattern that will return me the contents of the first set of brackets in a string.

Eg - text text text text (hello) text (hello2) (hello3) text

..will return "hello"

does anyone know what the pattern looks like for c#?

share|improve this question

4 Answers

up vote 27 down vote accepted

The regexp pattern would look something like this:

\(([^)]*)\)

Pattern autopsy:

\( - a literal "("

( - start of subpattern:

[^)]* match 0 or more characters which are not ")" - note: we're defining a character group, so we don't have to escape the ) character here.

) - end of subpattern

\) - a literal ")"

The full pattern will match the brackets and the text inside them, the first subpattern will match only the text inside the brackets (see C# reference how to get them - I don't speak C# ;))

share|improve this answer
Can this be adapted to not return the brackets themselves? only the contents? – Grant Oct 12 '09 at 7:50
This looks correct to me. Match an actual '(' character, then start a group, then match zero or more non-')' characters, then close the group; then match an actual ')' character. The resulting group should get just what was inside the parens. This example is slightly confusing because the character to start a group just happens to be '(' and we are looking to match an actual '('. To turn off the "magic" of the '(' character and just match an actual '(' character, we put a backslash first, like "\(", as shown here. – steveha Oct 12 '09 at 7:52
This doesn't return the brackets themselves. – Yannick Motton Oct 12 '09 at 7:53
2  
@Grant, this pattern looks correct to me. It should not return the parentheses enclosing the matched text, just the matched text. The pattern "[^)]" is a range expression, where "^)" means "match any character except the following characters:" where the only following character is ')'. Thus, this matches anything but ')'. Then a '*' means "match zero or more of this". Here is a good intro to regular expressions: codeproject.com/KB/string/re.aspx – steveha Oct 12 '09 at 7:57
2  
If you are using C# use match.Groups[1].Value to get at the value between parentheses. – Peter van der Heijden Oct 12 '09 at 8:00
show 3 more comments

This will return you only what is within the first set of brackets:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Text.RegularExpressions;

namespace Test
{
    class Program
    {
        static void Main(string[] args)
        {
            Match match = Regex.Match("foo bar (first) foo bar (second) foo", @"\((.*?)\)");

            if (match.Groups.Count > 1)
            {
                string value = match.Groups[1].Value;
                System.Console.WriteLine(value);
            }
        }
    }
}
share|improve this answer

Bare regex:

\((.*?)\)

In Python you can use it this way:

import re

rx = re.compile(r'\((.*?)\)')
s = 'text text text text (hello) text (hello2) (hello3) text'
rxx = rx.search(s)
if rxx:
    print(rxx.group(1))
share|improve this answer
Wouldn't python regex do greedy matching here? Returning (hello) text (hello2) (hello3) as the first and only match? – Yannick Motton Oct 12 '09 at 7:58
Okay, the expression ".*?" is a non-greedy version of ".*" in Python. Does it also work in C#? – steveha Oct 12 '09 at 7:59
Hmm, the non-greedy trick probably does work in C#, see "Lazy and Greedy matching" in this page: dijksterhuis.org/regular-expressions-in-csharp-the-basics – steveha Oct 12 '09 at 8:01
Ah, indeed, missed that :-) – Yannick Motton Oct 12 '09 at 8:16

If the strings are relatively small, you could use a replace instead of a match:

string s = Regex.Replace("text text text text (hello) text (hello2) (hello3) text", @"^.*?\(([^)]*)\).*$", "$1");
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.