vote up 3 vote down star
2

Hello guys,

i'm currently trying to split a string in C# (latest .NET and Visual Studio 2008), in order to retrieve everything that's inside square brackets and discard the remaining text.

E.g.: "H1-receptor antagonist [HSA:3269] [PATH:hsa04080(3269)]"

In this case, i'm interested in getting "HSA:3269" and "PATH:hsa04080(3269)" into an array of strings.

How can this be achieved? Thanks in advance!

flag

3 Answers

vote up 8 vote down check

Split won't help you here; you need to use regular expressions:

// using System.Text.RegularExpressions;
// pattern = any number of arbitrary characters between square brackets.
var pattern = @"\[(.*?)\]";
var query = "H1-receptor antagonist [HSA:3269] [PATH:hsa04080(3269)]";
var matches = Regex.Matches(query, pattern);

foreach (Match m in matches) {
    Console.WriteLine(m.Groups[1]);
}

Yields your results.

link|flag
Do you find it awkward in 3.5 that MatchCollection enumeartor still returns Match as Object? – chakrit Apr 11 at 19:21
anyway... a better regex match might be \[([^\]]*)\] so as to be on the safe side :-) – chakrit Apr 11 at 19:23
@chakrit: 1. Yes, but this cannot be changed for backwards compatibility reasons. Really a shame though. Microsoft should have the balls to do like Python 3: throw everything pre-2.0 out for good and introduce a breaking change. But this won't happen … – Konrad Rudolph Apr 11 at 19:25
Perfect! Thanks man, really appreciate it :) – Hal Apr 11 at 19:26
@chakrit: 2. This was indeed my first version (I usually always use explicit groups) but I reconsidered because that's wordier to express exactly the same pattern (for all practical purposes). There's really no risk here in using the more implicit character class along with a nongreedy quantifier. – Konrad Rudolph Apr 11 at 19:27
vote up 0 vote down

Hi!

I've got a similar problem, except i'd like to get all the stuff outside the square brackets. There's a small difference though, each string can have several blocks of square brackets.

Any ideas?

link|flag
Ask this as an own question with an appropriate example of input / expected output. Then you will probably get answers quickly since the problem sounds very straightforward. – Konrad Rudolph Apr 13 at 12:54
vote up -1 vote down

Err, how about regex split then?! Untested:

string input = "H1-receptor antagonist [HSA:3269] [PATH:hsa04080(3269)]";   
string pattern = @"([)|(])";

foreach (string result in Regex.Split(input, pattern)) 
{
   Console.WriteLine("'{0}'", result);
}
link|flag
You should have tested it. "([)|(])" matches ')', '|', or '('. You probably meant "(\[|\])", but that's wrong too; if you use capturing groups in the regex, the captured text is returned along with the other tokens, for a total of eight tokens. Try it here: myregextester.com/in – Alan Moore Apr 11 at 22:55
Since the question was actually to use split, I thought I'd demonstrate a better solution with a link and a quick, untested sample, from where the user can use their initiative and solve the problem! – Daz Apr 11 at 23:51

Your Answer

Get an OpenID
or

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