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

Possible Duplicate:
Regular expression, split string by capital letter but ignore TLA

hello everyone, in c# if i have a string that is a sentence that contain upper case Letters how can i split the words?

for example:

string a = "HelloWorld"

and i need

b[0] = "Hello";
b[1]= "world";
share|improve this question
4  
See stackoverflow.com/questions/1097901/… – Zaki Dec 12 '10 at 15:06
"World" or "world"? if "world" then use str.ToLower(); – Javed Akram Dec 12 '10 at 15:30
Hey buddies, why did you close the question? These are not the same Question. – Jani Dec 12 '10 at 15:41
Here are two more solutions by LINQ. IEnumerable<string> enumerable = preString.Select( c => Char.IsUpper(c) ? " " + c.ToString(): c.ToString()); MessageBox.Show(string.Concat(enumerable.ToArray())); IEnumerable<char> selectMany = preString.SelectMany(o => Char.IsUpper(o) ? o.ToString() : " " + o.ToString()); MessageBox.Show(new string(selectMany.ToArray())); – Jani Dec 12 '10 at 17:31

marked as duplicate by Rup, abatishchev, Woot4Moo, Cody Gray, digEmAll Dec 12 '10 at 15:34

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

up vote 4 down vote accepted

Try:

String preString = "HelloWorld";
StringBuilder sb = new StringBuilder();

foreach (char c in preString)
{
    if (Char.IsUpper(C))
        sb.Append(' ');
    sb.Append(C);
}

string result = sb.ToString();
share|improve this answer
might want to then do a Split to get it into an array? – devrooms Dec 12 '10 at 15:12
Yes, just split by white space... – Tee Wu Dec 12 '10 at 15:13
@nofortee Remove the first space you've added and change the iteration variable to lower case c – Jani Dec 12 '10 at 15:19
@Jani: thanks for the reminding. I think the above code just give the clues about how to do that. Of course there's a little modification need to be done to fixed one's need. Thanks indeed. – Tee Wu Dec 12 '10 at 15:23
Thanks for the help, it worked – yonatan Dec 12 '10 at 18:34
show 1 more comment

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