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 need help regarding string manipulation in C#. I have a string in the format [text1|text2|text3|...]. What I want is to extract each of the strings between the separators and possibly save them into a list or something similiar. Thanks in advance.

share|improve this question

4 Answers

up vote 5 down vote accepted

What you need is String.Split:

string[] result = inputString.Split(new Char[] {'|'});

Though

string[] result = inputString.Split('|');

Will work just as well as there's a single character overload not shown in the MSDN.

This will give you an array of strings "text1", "text2", "text3" etc.

If your string really is bookended by "[" and "]" and you will need remove these as well. If these characters don't appear anywhere else in your string you can do that in a single call:

string[] result = inputString.Split(new Char[] {'|', '[', ']'},
                                    StringSplitOptions.RemoveEmptyEntries);

Source

Otherwise you'll have to trim the text:

string[] result = inputString.Trim('[',']').Split('|');
share|improve this answer
1  
inputString.Split('|'); works. The signature is Split(params Char[] separator). No need for a new Char[]{}. – Oded Feb 12 at 22:09
But the text starts with [ and ends with ] – Tim Schmelter Feb 12 at 22:10
@Oded - I thought so, but when I double checked to make sure I'd got the profile right it gave that. – ChrisF Feb 12 at 22:12
MSDN is a bit funny there - the params is only shown in the actual overload page, no the listing of overloads. – Oded Feb 12 at 22:13
@TimSchmelter - see update – ChrisF Feb 12 at 22:15
show 2 more comments

You can use String.Trim(to remove the [ and ]) and string.Split to create the array:

string[] result = text.Trim('[',']').Split('|');
share|improve this answer

http://www.dotnetperls.com/split

string[] array = "[text1|text2|text3|...]".Split('|');
share|improve this answer
Don't forget about [ and ] – Sam Feb 12 at 22:12

You should look into string.Split()

string[] result = "[text1|text2|text3]".Replace("[", "").Replace("]", "").Split('|');

Result is array with 3 strings:

[0] = "text1", [1] = "text1", [2] = "text1"

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.