|
NAME | LIBRARY | SYNOPSIS | DESCRIPTION | RETURN VALUE | ATTRIBUTES | STANDARDS | HISTORY | CAVEATS | EXAMPLES | SEE ALSO | COLOPHON |
|
|
|
strtok(3) Library Functions Manual strtok(3)
strtok - extract tokens from strings
Standard C library (libc, -lc)
#include <string.h>
char *strtok(char *_Nullable restrict str, const char *restrict delim);
The strtok() function breaks a string into a sequence of zero or
more nonempty 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 must be NULL.
The delim argument specifies a set of bytes 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 byte. If no more tokens are found, strtok()
returns NULL.
A sequence of calls to strtok() that operate on the same string
maintains a pointer that determines the point from which to start
searching for the next token. The first call to strtok() sets
this pointer to point to the first byte of the string. The start
of the next token is determined by scanning forward for the next
nondelimiter byte in str. If such a byte is found, it is taken as
the start of the next token. If no such byte is found, then there
are no more tokens, and strtok() returns NULL. (A string that is
empty or that contains only delimiters will thus cause strtok() to
return NULL on the first call.)
The end of each token is found by scanning forward until either
the next delimiter byte is found or until the terminating null
byte ('\0') is encountered. If a delimiter byte is found, it is
overwritten with a null byte to terminate the current token, and
strtok() saves a pointer to the following byte; that pointer will
be used as the starting point when searching for the next token.
In this case, strtok() returns a pointer to the start of the found
token.
From the above description, it follows that a sequence of two or
more contiguous delimiter bytes in the parsed string is considered
to be a single delimiter, and that delimiter bytes at the start or
end of the string are ignored. Put another way: the tokens
returned by strtok() are always nonempty strings. Thus, for
example, given the string "aaa;;bbb,", successive calls to
strtok() that specify the delimiter string ";," would return the
strings "aaa" and "bbb", and then a null pointer.
strtok() returns a pointer to the next token, or NULL if there are
no more tokens.
For an explanation of the terms used in this section, see
attributes(7).
┌────────────────────────┬───────────────┬───────────────────────┐
│ Interface │ Attribute │ Value │
├────────────────────────┼───────────────┼───────────────────────┤
│ strtok() │ Thread safety │ MT-Unsafe race:strtok │
└────────────────────────┴───────────────┴───────────────────────┘
C11, POSIX.1-2008.
POSIX.1-2001, C89, SVr4, 4.3BSD.
Be cautious when using this function. If you do use it, note
that:
• The identity of the delimiting byte is lost.
• The strtok() function uses a static buffer while parsing, so
it's not thread safe. Use strtok_r(3) if this matters to you.
See getaddrinfo_a(3).
memchr(3), strchr(3), string(3), strpbrk(3), strsep(3), strspn(3),
strstr(3), strtok_r(3), wcstok(3)
This page is part of the man-pages (Linux kernel and C library
user-space interface documentation) project. Information about
the project can be found at
⟨https://www.kernel.org/doc/man-pages/⟩. If you have a bug report
for this manual page, see
⟨https://git.kernel.org/pub/scm/docs/man-pages/man-pages.git/tree/CONTRIBUTING⟩.
This page was obtained from the tarball man-pages-6.18.tar.gz
fetched from
⟨https://mirrors.edge.kernel.org/pub/linux/docs/man-pages/⟩ on
2026-05-24. If you discover any rendering problems in this HTML
version of the page, or you believe there is a better or more up-
to-date source for the page, or you have corrections or
improvements to the information in this COLOPHON (which is not
part of the original manual page), send a mail to
man-pages@man7.org
Linux man-pages 6.18 2026-02-25 strtok(3)
Pages that refer to this page: strchr(3), string(3), strpbrk(3), strsep(3), strspn(3), strstr(3), strtok_r(3), wcstok(3)