vote up 2 vote down star

C# How do I extract a string of text that lies between two (brackets)?

I have a string "User name (sales)" and I want to etract the text bewteen the brackets, how would I do this? I suspect substring but I can't work out how to read until the closing bracket, the length of text will vary.

Many thanks

PS How awesome is stackoverflow!

flag
Show us what you've tried. Have you looked at using regular expressions? – George Stocker Dec 18 '08 at 16:37

10 Answers

vote up 1 vote down

To answer your second question, this awesome!

link|flag
vote up 1 vote down

The regex method is not superior if performance is a consideration. Regex is using a sledgehammer on a flea.

As you described it, your bracket problem is extremely limited and well-defined. I like the answer by Tungle139 above.

Regex is better for problems with a lot less uniformity/predictability in them.

link|flag
vote up 1 vote down

The regex method is superior I think, but if you wanted to use the humble substring

string input= "my name is (Jayne C)";
int start = input.IndexOf("(");
int stop = input.IndexOf(")");
string output = input.Substring(start+1, stop - start - 1);

or

string input = "my name is (Jayne C)";
string output  = input.Substring(input.IndexOf("(") +1, input.IndexOf(")")- input.IndexOf("(")- 1);
link|flag
int stop = s.IndexOF(")", start) is appropriate. – Jimmy Dec 18 '08 at 16:52
yes sure, good point :D – DrG Dec 18 '08 at 16:56
vote up 1 vote down
input.Remove(input.IndexOf(')')).Substring(input.IndexOf('(') + 1);
link|flag
vote up 0 vote down

Use a Regular Expression:

string test = "(test)"; 
string word = Regex.Match(test, @"\((\w+)\)").Groups[1].Value;
Console.WriteLine(word);
link|flag
vote up 5 vote down

Assuming that you only have one pair of parenthesis.

string s = "User name (sales)";
int start = s.IndexOf("(");
int end = s.IndexOf(")")
string result = s.substring(start, end - start -1)
link|flag
vote up 5 vote down
string input = "User name (sales)";

string output = input.Substring(input.IndexOf('(') + 1, input.IndexOf(')') - input.IndexOf('(') - 1);
link|flag
You should of course only calculate the location of the first bracket once. – Martin Brown Dec 18 '08 at 19:29
vote up 9 vote down

A very simple way to do it is by using regular expressions:

Regex.Match("User name (sales)", @"\(([^)]*)\)").Groups[1].Value
link|flag
vote up 3 vote down

Regular expressions might be the best tool here. If you are not famililar with them, I recommend you install Expresso - a great little regex tool.

Something like:

		Regex regex = new Regex("\\((?<TextInsideBrackets>\\w+)\\)");
		string incomingValue = "Username (sales)";
		string insideBrackets = null;
		Match match = regex.Match(incomingValue);
		if(match.Success)
		{
			insideBrackets = match.Groups["TextInsideBrackets"].Value;
		}
link|flag
Expresso is ace! – Nath Dec 18 '08 at 16:57
vote up 8 vote down

A regex maybe? I think this would work...

\(([a-z]+?)\)
link|flag

Your Answer

Get an OpenID
or

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