I would like to split a string only after the first word which has more than two spaces b/w them. For example:
string myString = "AAAA AAA DDD BBBB BBB BBB CCCCCCCC";
I want to split it into these:
"AAAA AAA DDD"
"BBBB BBB BBB CCCCCCCC"
Please help.