Try splitting it with double quotes (Text.Split (new Char [] {'/ "'}, 3);), then taking the last line in this array and again breaking it into a space.
string[] pathAndArgs = Text.Split(new Char[] { '/"' }, 3); string[] args = pathAndArgs[2].Split(new Char[] { ' ' }, 2);
I may have a syntax error, but you understand what I mean.
source share