I have a string with quotes around the path as follows:
“C:\Program Files (x86)\Windows Media Player\wmplayer.exe” arg1 arg2
If I use Text.Split(new Char[] { ' ' }, 2); then I get the first space.
How to get the path and args ?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Try splitting on the double quotes (Text.Split(new Char[] { ‘/”‘ }, 3);) then taking the last string in that array and splitting again on the space.
I may have a syntax error in there, but you get what I mean.