STRTOK


HOME

STRTOK

NAME
SYNOPSIS
DESCRIPTION
RETURN VALUE
ATTRIBUTES
CONFORMING TO
BUGS
EXAMPLE
SEE ALSO
COLOPHON

NAME

strtok, strtok_r − extract tokens from strings

SYNOPSIS

#include <string.h>

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 >= 1 || _XOPEN_SOURCE || _POSIX_SOURCE

DESCRIPTION

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.

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.

ATTRIBUTES

Multithreading (see pthreads(7))
The strtok() function is not thread-safe.

The strtok_r() function is thread-safe.

CONFORMING TO

strtok()

SVr4, POSIX.1-2001, 4.3BSD, C89, C99.

strtok_r()

POSIX.1-2001.

BUGS

Be cautious when 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 byte 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 program below 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 specifies the delimiter byte(s) to be used to separate that string into "major" tokens. The third argument specifies the delimiter byte(s) to be used to separate the "major" tokens into subtokens.

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

Program source
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

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);
}

Another example program using strtok() can be found in getaddrinfo_a(3).

SEE ALSO

index(3), memchr(3), rindex(3), strchr(3), string(3), strpbrk(3), strsep(3), strspn(3), strstr(3), wcstok(3)

COLOPHON

This page is part of release 3.69 of the Linux man-pages project. A description of the project, information about reporting bugs, and the latest version of this page, can be found at http://www.kernel.org/doc/man−pages/.




More Linux Commands

manpages/mdvalidater.1.html
mdvalidater(1) - Validate XML Documents against the ECMA Doc
mdvalidator has been obsoleted by mdoc(1). See the mdoc-validate(1) man page. mdvalidator is a program that validates the specified FILES against the ECMA Docum

manpages/XkbAllocKeyboard.3.html
XkbAllocKeyboard(3) - Creates a keyboard description from sc
Applications seldom need to directly allocate a keyboard description; calling XkbGetKeyboard usually suffices. In the event you need to create a keyboard descri

manpages/sinl.3.html
sinl(3) - sine function (Library - Linux man page)..........
The sin() function returns the sine of x, where x is given in radians. RETURN VALUE On success, these functions return the sine of x. If x is a NaN, a NaN is re

manpages/oodraw.1.html
oodraw(1) - LibreOffice office suite - Linux manual page....
LibreOffice (LO for short) is a multi-platform office productivity suite. It was derived from OpenOffice.org 3.3 Beta on September 28, 2010. libreoffice is a sh

manpages/dnsblog.8.html
dnsblog(8) - Postfix DNS white/blacklist logger (Man Page)
The dnsblog(8) server implements an ad-hoc DNS white/blacklist lookup service. This may eventually be replaced by an UDP client that is built directly into the

manpages/XFillRectangle.3.html
XFillRectangle(3) - fill rectangles, polygons, or arcs......
The XFillRectangle and XFillRectangles functions fill the specified rectangle or rectangles as if a four-point FillPolygon protocol request were specified for e

manpages/Tcl_AppendStringsToObj.3.html
Tcl_AppendStringsToObj(3) - manipulate Tcl objects as string
The procedures described in this manual entry allow Tcl objects to be manipulated as string values. They use the internal representation of the object to store

manpages/cacademo.1.html
cacademo(1) - libcaca's demonstration applications (ManPage)
This manual page documents briefly the cacademo and cacafire programs. cacademo displays ASCII art effects with animated transitions: metaballs, moire pattern o

manpages/perl5121delta.1.html
perl5121delta(1) - what is new for perl v5.12.1 (Man Page)
This document describes differences between the 5.12.0 release and the 5.12.1 release. If you are upgrading from an earlier release such as 5.10.1, first read p

manpages/glutStrokeCharacter.3.html
glutStrokeCharacter(3) - renders a stroke character using Op
Without using any display lists, glutStrokeCharacter renders the character in the named stroke font. The available fonts are: GLUT_STROKE_ROMAN A proportionally

manpages/Tcl_EventuallyFree.3.html
Tcl_EventuallyFree(3) - avoid freeing storage while it is be
These three procedures help implement a simple reference count mechanism for managing storage. They are designed to solve a problem having to do with widget del

manpages/ModemManager.8.html
ModemManager(8) modem management daemon - Linux manual page
The ModemManager daemon provides a unified high level API for communicating with (mobile broadband) modems. While the basic commands are standardized, the more





We can't live, work or learn in freedom unless the software we use is free.