I don't know how to split this string:
The string is 'Allocation: Randomized, Endpoint Classification: Safety Study, Intervention Model: Single Group Assignment, Masking: Double Blind (Subject,
Caregiver, Investigator, Outcomes Assessor), Primary Purpose: Treatment'
Currently used split syntax:
string.Split(',');
results in:
[0]: Allocation: Randomized
[1]: Endpoint Classification: Safety Study
[2]: Intervention Model: Single Group Assignment
[3]: Masking: Double Blind (Subject,
[4]: Caregiver,
[5]: Investigator,
[6]: Outcomes Assessor)
[7]: Primary Purpose: Treatment
but the result I would like is:
[0]: Allocation: Randomized
[1]: Endpoint Classification: Safety Study
[2]: Intervention Model: Single Group Assignment
[3]: Masking: Double Blind (Subject, Caregiver, Investigator, Outcomes Assessor)
[4]: Primary Purpose: Treatment
Could someone help me correct my string split syntax?