35

我不完全确定如何在 C 中执行此操作:

char* curToken = strtok(string, ";");
//curToken = "ls -l" we will say
//I need a array of strings containing "ls", "-l", and NULL for execvp()

我该怎么做呢?

4

2 回答 2

63

由于您已经研究过,strtok只需沿着相同的路径继续并使用空格 ( ' ') 作为分隔符拆分字符串,然后使用 asrealloc来增加包含要传递到的元素的数组的大小execvp

请参阅下面的示例,但请记住,这strtok将修改传递给它的字符串。如果您不希望发生这种情况,则需要使用strcpy或类似功能制作原始字符串的副本。

char    str[]= "ls -l";
char ** res  = NULL;
char *  p    = strtok (str, " ");
int n_spaces = 0, i;


/* split string and append tokens to 'res' */

while (p) {
  res = realloc (res, sizeof (char*) * ++n_spaces);

  if (res == NULL)
    exit (-1); /* memory allocation failed */

  res[n_spaces-1] = p;

  p = strtok (NULL, " ");
}

/* realloc one extra element for the last NULL */

res = realloc (res, sizeof (char*) * (n_spaces+1));
res[n_spaces] = 0;

/* print the result */

for (i = 0; i < (n_spaces+1); ++i)
  printf ("res[%d] = %s\n", i, res[i]);

/* free the memory allocated */

free (res);

res[0] = ls
res[1] = -l
res[2] = (null)
于 2012-06-25T23:03:21.070 回答
7

这是一个从 MSDN 借来的如何使用 strtok 的示例。

而相关的位,你需要多次调用它。tokenchar* 是您将填充到数组中的部分(您可以弄清楚该部分)。

char string[] = "A string\tof ,,tokens\nand some  more tokens";
char seps[]   = " ,\t\n";
char *token;

int main( void )
{
    printf( "Tokens:\n" );
    /* Establish string and get the first token: */
    token = strtok( string, seps );
    while( token != NULL )
    {
        /* While there are tokens in "string" */
        printf( " %s\n", token );
        /* Get next token: */
        token = strtok( NULL, seps );
    }
}
于 2012-06-25T23:05:17.817 回答