vote up 0 vote down star

I'm writing a small application in C that takes two parameters. One is a filename, the other a number, and they may be specified in random order.

./main filename 12345

and

./main 12345 filename

should both work.

How can I easily determine which is which when I know the filename starts with a character?

flag

3  
And if the filename is a number? – ntd Nov 7 at 16:49
I guess in that case, you'll have to use the second syntax or you'll confuse the program :) – schnaader Nov 7 at 16:50
1  
As I wrote: the filename starts with a character. – Eirik Lillebo Nov 7 at 16:51
1  
Why don't you just require the arguments to be in a specific order? That's what most programs do, since otherwise it's impossible to determine the arguments. Most programs do have to deal with filenames which are numbers. – Adam Rosenfield Nov 7 at 18:09
What do you do with a filename that starts with a dash? Or a $? Adam, you should make your comment an answer. – jmucchiello Nov 7 at 18:18

5 Answers

vote up 9 vote down check

You can use the isalpha and isdigit functions (defined in ctype.h) on the first character of argv[1] or argv[2].

link|flag
2  
The main problem with every solution like this comes if you have a filename which is a legal number. So you would have to check the whole string if it only consists of a number and then also if it is no existing file. – frenetisch applaudierend Nov 7 at 16:52
@frenetisch, that would not be a problem with this answer, but with the question itself. And it's not even a problem with the question since the OP states that all the filenames start with a character. – paxdiablo Nov 8 at 4:57
vote up 4 vote down

You can use the ctype functions.

if (isalpha(*argv[1]))
    // argv[1] starts with a letter
else if (isdigit(*argv[1])
    // argv[1] starts with a number
link|flag
1  
And don't forget to handle the else case as well... ./main /path/to/file 666. Just using isdigit(), and presuming filename otherwise is probably better. – ndim Nov 7 at 17:17
You should cast *argv[1] to unsigned char, since it is of type char, and isalpha and isdigit specify that their argument must be in the range of unsigned char or EOF. – caf Nov 8 at 5:10
vote up 2 vote down

Use isdigit.

isdigit((unsigned char)argv[1][0])

Make sure you check argc first.

link|flag
+1 for the required cast to unsigned char – pmg Nov 7 at 17:45
vote up 0 vote down
if ('0' <= argv[1][0] && argv[1][0] <= '9')
{
    /* it starts with a number */
}
link|flag
vote up 0 vote down

You can also use the sscanf() function, which returns the number of successfully scanned items:

int number;
char *string;

if (sscanf (argv[1], " %d ", &number) == 1) { /*12345 filename */
  string = malloc ((strlen (argv[2]) + 1) * sizeof (char));
  sscanf (argv[2], " %s ", string);
}
else { /* filename 12345 */
  sscanf (argv[2], " %d ", &number);
  string = malloc ((strlen (argv[1]) + 1) * sizeof (char));
  sscanf (argv[1], " %s ", string);
}

If argv[1] is a string starting with a character the first clause will return "zero".

link|flag
There's no need to copy strings in this case, you can just assign string directly to argv[1] or `argv[2] as appropriate. – Adam Rosenfield Nov 7 at 18:08
You are right, Adam, they're within same scope. Thanks for pointing that out. – Leonardo de Oliveira Martins Nov 7 at 19:00

Your Answer

Get an OpenID
or

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