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.
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.
|
|
|
What you need is
Though
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:
Otherwise you'll have to trim the text:
|
|||||||||||||
|
|
You can use
|
||||
|
|
|
http://www.dotnetperls.com/split
|
||||
|
|
|
You should look into
Result is array with 3 strings:
|
||||
|
|
