I want to split this line:
string line = \"First Name ; string ; firstName\";
into an array of their trimmed versions:
\"Fi
Alternatively try this:
string[] parts = Regex.Split(line, "\\s*;\\s*");