Bash-Linux.com : Le SHELL pour les nuls

  Actuellement 50 lignes de commande et 1472 man disponibles
login as: root
root@213.186.33.18's password:
Last login: Sun Feb 12 8:17:25 2012 from 38.107.179.230
[root@bash-linux ~] # echo "Bienvenue sur Bash-Linux.com"_
 Manuel des commandes UNIX (man) Version anglaise

Indiquez la fonction :

Man Strtok en anglais

STRTOK(3) Linux Programmer's Manual STRTOK(3)
 
NAME


strtok, strtok_r - extract tokens from strings
 
SYNOPSIS


#include char *strtok(char *str, const char *delim); char *strtok_r(char *str, const char *delim, char **saveptr); Feature Test Macro Requirements for glibc (see feature_test_macros(7)): strtok_r(): _SVID_SOURCE || _BSD_SOURCE || _POSIX_C_SOURCE || _XOPEN_SOURCE
 
DESCRIPTION


The strtok() function parses a string into a sequence of tokens. On the first call to strtok() the string to be parsed should be specified in str. In each subsequent call that should parse the same string, str should be NULL. The delim argument specifies a set of characters that delimit the tokens in the parsed string. The caller may specify different strings in delim in successive calls that parse the same string. Each call to strtok() returns a pointer to a null-terminated string containing the next token. This string does not include the delimiting character. If no more tokens are found, strtok() returns NULL. A sequence of two or more contiguous delimiter characters in the parsed string is considered to be a single delimiter. Delimiter characters at the start or end of the string are ignored. Put another way: the tokens returned by strtok() are always non-empty strings. The strtok_r() function is a reentrant version strtok(). The saveptr argument is a pointer to a char * variable that is used internally by strtok_r() in order to maintain context between successive calls that parse the same string. On the first call to strtok_r(), str should point to the string to be parsed, and the value of saveptr is ignored. In subsequent calls, str should be NULL, and saveptr should be unchanged since the previous call. Different strings may be parsed concurrently using sequences of calls to strtok_r() that specify different saveptr arguments.
 
RETURN VALUE


The strtok() and strtok_r() functions return a pointer to the next token, or NULL if there are no more tokens.
 
CONFORMING TO


strtok() SVr4, POSIX.1-2001, 4.3BSD, C89, C99. strtok_r() POSIX.1-2001.
 
BUGS


Avoid using these functions. If you do use them, note that: These functions modify their first argument. These functions cannot be used on constant strings. The identity of the delimiting character is lost. The strtok() function uses a static buffer while parsing, so it's not thread safe. Use strtok_r() if this matters to you.
 
EXAMPLE


The following program uses nested loops that employ strtok_r() to break a string into a two-level hierarchy of tokens. The first command-line argument specifies the string to be parsed. The second argument speci- fies the delimiter character(s) to be used to separate that string into "major" tokens. The third argument specifies the delimiter charac- ter(s) to be used to separate the "major" tokens into subtokens. #include #include #include int main(int argc, char *argv[]) { char *str1, *str2, *token, *subtoken; char *saveptr1, *saveptr2; int j; if (argc != 4) { fprintf(stderr, "Usage: %s string delim subdelim\n", argv[0]); exit(EXIT_FAILURE); } for (j = 1, str1 = argv[1]; ; j++, str1 = NULL) { token = strtok_r(str1, argv[2], &saveptr1); if (token == NULL) break; printf("%d: %s\n", j, token); for (str2 = token; ; str2 = NULL) { subtoken = strtok_r(str2, argv[3], &saveptr2); if (subtoken == NULL) break; printf(" --> %s\n", subtoken); } } exit(EXIT_SUCCESS); } /* main */ An example of the output produced by this program is the following: $ ./a.out 'a/bbb///cc;xxx:yyy:' ':;' '/' 1: a/bbb///cc --> a --> bbb --> cc 2: xxx --> xxx 3: yyy --> yyy
 
SEE ALSO


index(3), memchr(3), rindex(3), strchr(3), strpbrk(3), strsep(3), str- spn(3), strstr(3), wcstok(3)
 
COLOPHON


This page is part of release 3.05 of the Linux man-pages project. A description of the project, and information about reporting bugs, can be found at http://www.kernel.org/doc/man-pages/. GNU 2007-07-26 STRTOK(3)


 Dernières recherches
Man  en anglais Man strtok en anglaisMan  en français Man strtok en français
Man  en anglais Man wcsstr en anglaisMan  en français Man wcsstr en français
Man  en anglais Man reboot en anglaisMan  en français Man reboot en français
Man  en anglais Man fdopen en anglaisMan  en français Man fdopen en français
Man  en anglais Man chattr en anglaisMan  en français Man chattr en français
Man  en anglais Man memchr en anglaisMan  en français Man memchr en français
Man  en anglais Man verify en anglaisMan  en français Man verify en français
Man  en anglais Man packet en anglaisMan  en français Man packet en français
Man  en anglais Man isatty en anglaisMan  en français Man isatty en français
Man  en anglais Man locale en anglaisMan  en français Man locale en français
Man  en anglais Man ioperm en anglaisMan  en français Man ioperm en français
Man  en anglais Man ecvt_r en anglaisMan  en français Man ecvt_r en français
Man  en anglais Man ulimit en anglaisMan  en français Man ulimit en français
Man  en anglais Man strsep en anglaisMan  en français Man strsep en français
Man  en anglais Man groups en anglaisMan  en français Man groups en français

 Recherche

Dans ce moteur de recherche, vous pouvez taper directement votre besoin, en une phrase normale, humaine.
Exemple : vous cherchez comment remplacer un mot par un autre dans tous les fichiers d'un certain dossier. Vous pouvez écrire "Comment remplacer un mot par un autre dans tous les fichiers d'un dossier". Le moteur vous ramenera les résultats en fonction de leur pertinence.
Vous pouvez bien sûr ne chercher qu'un seul mot-clé, par exemple "find".
 Toutes les lignes de code
Par popularité
Par fonction
Recherche avancée
 Les logiciels SHELL/SSH
Putty
Astuces Bash
Faire du SHELL avec PHP!
 La doc officielle
Les man Linux en français
Les man Linux en anglais
 Proposer vos bash
Partagez vos lignes!
 Les requêtes
Déposer une requête
Voir/répondre à une requête
 Quelques sites interessants
Bons sites pour apprendre
 Rechercher