I am not the best with pointers, so maybe you can see what I'm doing wrong.
Let's say that I have an array that was initialized like this:
char *arrayOfCommands[]={"ls -l", "wc -l"};
My goal is to get an array called char *currentCommand out of this array that looks at a specific cell of arrayOfCommands and separates the command into pieces on spaces.
My final goal would be to have a new currentCommand array on each loop that each look like this:
First Loop:
currentCommand = [ls][-l]
First Loop:
currentCommand = [wc][-l]
Here is the code I have so far:
for (i = 0; i < 2; ++i) {
char str[] = arrayOfCommands[i];
char * currentCommand;
printf ("Splitting string \"%s\" into tokens:\n",str);
currentCommand = strtok (str, " ");
while (currentCommand != NULL){
printf ("%s\n",currentCommand);
currentCommand = strtok (NULL, " ");
}
.
.
.
//Use the currentCommand array (and be done with it)
//Return to top
}
Any help would be greatly appreciated! :)
UPDATE:
for (i = 0; i < commands; ++i) {
char str[2];
strncpy(str, arrayOfCommands[i], 2);
char *currentCommand[10];
printf ("Splitting string \"%s\" into tokens:\n",str);
currentCommand = strtok (str, DELIM);
while (currentCommand != NULL){
printf ("%s\n",currentCommand);
currentCommand = strtok (NULL, DELIM);
}
}
I am getting this error: ** incompatible types in assignment**
It's talking about the "str" I'm passing the strtok function.
strtok()is the best choice? Have you considered usingstrcspn()orstrpbrk()or something similar instead?strtok()is a dangerous function. If you use it in a library function, you must document that you do so because by using it, you wreak havoc on anyone who calls your function while themselves usingstrtok(). And you must also be careful not to call any other function that usesstrtok()for the same reason. Generally, steer well clear ofstrtok()unless there's a teacher holding your hands in the flames and forcing you to keep them there Look forstrtok_r(). – Jonathan Leffler Oct 1 '12 at 1:48char str[] = arrayOfCommands[i];mean? – Michael Burr Oct 1 '12 at 2:56arrayOfCommands[]. On second thought, for the first step just print each token on a separate line before trying to build an array of tokens. – Michael Burr Oct 1 '12 at 3:07