Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is it possible to save value of txtSearche in array splitted into seperate words?

txtSearche = "put returns between paragraphs";

something like this:

 StringBuilder sb = new StringBuilder(txtSearche);

array1 = sb[1]   = put
array2 = sb[2]   = returns
array3 = sb[3]
array4 = sb[4]
array5 = sb[5]

how to do it correct?

share|improve this question

5 Answers

up vote 11 down vote accepted

Yes try this:

string[] words = txtSearche.Split(' ');

which will give you:

words[0]   = put
words[1]   = returns
words[2]   = between
words[3]   = paragraphs

EDIT: Also as Adkins mentions below, the words array will be created to whatever size is needed by the string that is provided. If you want the list to have a dynamic size I would say drop the array into a list using List wordList = words.ToList();

EDIT: Nakul to split by one space or more, just add them as parameters into the Split() method like below:

txtSearche.Split(new string[] { " ", "  ", "   " }, StringSplitOptions.None);

or you can tell it simply to split by a single space and ignore entries that are blank, caused by consecutive spaces, by using the StringSplitOptions.RemoveEmptyEntries enum like so

txtSearche.Split(new string[] { " " }, StringSplitOptions.RemoveEmptyEntries);
share|improve this answer
1  
It is also worth mentioning that the words array will be created to whatever size is needed by the string that is provided. If you want the list to have a dynamic size I would say drop the array into a list using List<string> wordList = words.ToList<string>(); – Adkins Sep 9 '10 at 12:09
@Adkins: Thanks I'll add it to the answer – w69rdy Sep 9 '10 at 12:58
I want to know what return when consecutive spaces in string – Nakul Chaudhary Sep 9 '10 at 13:33
1  
@Nakul: See my update in above – w69rdy Sep 9 '10 at 13:48
nice answer +1 – Nakul Chaudhary Sep 10 '10 at 4:08

You could use String.Split.

share|improve this answer
And, yes, there's also a Join. – Steven Sudit Sep 9 '10 at 12:31

Below example will split the string into an array with each word as an item...

string[] words = txtSearche.Split(' ');

You can find more details here

share|improve this answer

None of above work with multiple spaces or new line!!!

Here is what works with them:

 string text = "hi!\r\nI am     a wonderful56 text... \r\nyeah...";
 string[] words =Regex.Split(text, @"\s+", RegexOptions.Singleline);

If you need to remove ellipsis then more processing is required and i can give you that as well.

UPDATE

In fact this is better:

 string text = "hi!\r\nI am     a wonderful56 text... \r\nyeah...";
 MatchCollection matches = Regex.Matches(text, @"[\w\d_]+", RegexOptions.Singleline);
 foreach (Match match in matches)
 {
   if(match.Success)
      Console.WriteLine(match.Value);
  }

Outputs:

hi I am a wonderful56 text yeah

share|improve this answer
That's not entirely true, String.Split has an overload that takes an array of split characters, and an option to skip empty entries, so you could use text.Split(" \t\r\n\x85\xA0.,;:!?()-\"".ToCharArray(), StringSplitOptions.RemoveEmptyEntries). If you're going to go all the way to regex though, @"\W+(?<!')" would be better than @"\s+", since it would remove punctuation as well (the (?<!') is to protect contractions and possessives, with the unfortunate side effect that it won't remove single quotes). – P Daddy Sep 9 '10 at 12:31
StringBuilder sb = new StringBuilder(txtSearche); 

var result  =  sb.Tostring().Split(' '); 
share|improve this answer
new StringBuilder(txt).ToString() = no-op – P Daddy Sep 9 '10 at 14:09

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.