vote up 1 vote down star

I'm passing /file:c:\myfile.doc and I'm getting back "/file:c:\myfile.doc" instead of "C:\myfile.doc", could someone please advise where I am going wrong and yes I am learning C# :-)

            if (entry.ToUpper().IndexOf("FILE") != -1)
            {
                //override default log location
                MyFileLocation = entry.Split(new char[] {'='})[1];
            }

Many thanks

flag

6 Answers

vote up 1 vote down

Not an answer as I think it's been answered well enough already, but as you stated that you're a beginner I thought that I would point out that:

entry.split(new char[]{':'});

can be:

entry.split(':');

This uses:

split(params char[] separator);

This can be deceiving for new C# programmers as the params keyword means that you can actually pass in 1 to many chars, as in:

entry.split(':','.',' ');
link|flag
vote up 0 vote down

The code you've posted would require the argument /file=c:\myfile.doc.

Either use that as the parameter or split on the colon (:) instead of equals (=).

link|flag
vote up 2 vote down

The easiest way to do this is to just take a substring. Since you are reading this from the command line, the "/file:" portion will always be consistent.

entry.Substring(6);

This will return everything after the "/file:".

link|flag
vote up 0 vote down

Here is a good example of a command line argument parser.

link|flag
vote up 0 vote down

You could also just lop off the 'file:' part. It is clearly defined and will be constant so it isn't THAT bad. Not great, but not horrible.

link|flag
vote up 6 vote down

You are splitting on "=" instead of ":"

Try

    if (entry.ToUpper().IndexOf("FILE:") == 0)
    {
         //override default log location
         MyFileLocation location = entry.Split(new char[] {':'},2)[1];
    }
link|flag
This also fixes a problem where file exists somewhere in the middle of file name and matches erroneously and accounts for multiple colons in the string by splitting into at most 2 substrings. – tvanfosson Oct 10 '08 at 15:03
If your input string doesn't have a ":" this code will throw an OutOfRangeException. You should check that. – madgnome Oct 10 '08 at 15:05
It's guaranteed to have a colon since it must match the string "FILE:" – tvanfosson Oct 10 '08 at 15:20
Note that there may be better ways to do this -- I just wanted to show how to fix the given code. – tvanfosson Oct 10 '08 at 15:21

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.