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";