strtokのヘルプ・マニュアル
日本語 英語
strtok --help
man strtok
STRTOK(3) Linux Programmer’s Manual STRTOK(3)
名前
strtok, strtok_r - 文字列からトークンを取り出す
書式
#include
char *strtok(char *str, const char *delim);
char *strtok_r(char *str, const char *delim, char **saveptr);
glibc 向けの機能検査マクロの要件 (feature_test_macros(7) 参照):
strtok_r(): _SVID_SOURCE || _BSD_SOURCE || _POSIX_C_SOURCE >= 1 ||
_XOPEN_SOURCE || _POSIX_SOURCE
説明
strtok() 関数は文字列を解析してトークンに分割する。 strtok() を最初に呼
び出す際には、解析対象の文字列を str に指定する。同じ文字列の解析を行う
その後の呼び出しでは、 str には NULL を指定する。
delim 引き数には、解析する文字列をトークンに区切る文字集合を指定する 。
同じ文字列を解析する一連の呼び出しにおいて、 delim に違う文字列を指定し
てもよい。
strtok() のそれぞれの呼び出しでは、次のトークンを格納した NULL 終端され
た 文字列へのポインタが返される。この文字列には区切り文字は含まれない。
これ以上トークンが見つからなかった場合には、NULL が返される。
解析対象の文字列に2つ以上の区切り文字が連続している場合には、一つの区切
り 文字とみなされる。文字列の先頭や末尾にある区切り文字は無視される。言
い換えると、 strtok() が返すトークンは常に空でない文字列となる。
strtok_r() 関数は strtok() のリエントラント版である。 saveptr 引き数 は
char * 変数へのポインタであり、同じ文字列の解析を行う strtok_r() の呼び
出し間で処理状況を保存するために strtok_r() 内部で使用される。
strtok_r() を最初に呼び出す際には、 str は解析対象の文字列を指してい な
け れ ばならず、 saveptr の値は無視される。それ以降の呼び出しでは、 str
は NULL とし、 saveptr は前回の呼び出し以降変更しないようにしなければな
らない。
strtok_r() の呼び出し時に異なる saveptr 引き数を指定することで、異なる
文字列の解析を同時に行うことができる。
返り値
strtok() と strtok_r() は次のトークンへのポインタか、トークンがなければ
NULL を返す。
準拠
strtok()
SVr4, POSIX.1-2001, 4.3BSD, C89, C99.
strtok_r()
POSIX.1-2001.
バグ
こ れらの関数を使うのは慎重に吟味すること。使用する場合は、以下の点に注
意が必要である。
* これらの関数はその最初の引数を変更する。
* これらの関数は const な文字列では使えない。
* 区切り文字自体は失われてしまう。
* strtok() 関数は文字列の解析に静的バッファを用いるので、スレッドセーフ
でない。これが問題になる場合は strtok_r() を用いること。
例
以 下のプログラムは、 strtok_r() を利用するループを入れ子にして使用し、
文字列を2階層のトークンに分割するものである。 1番目のコマンドライン引き
数 には、解析対象の文字列を指定する。 2番目の引き数には、文字列を「大き
な」トークンに分割するために使用する区切り文字を指定する。 3番目の引 き
数 には、「大きな」トークンを細かく分割するために使用する区切り文字を指
定する。
このプログラムの出力例を以下に示す。
$ ./a.out 'a/bbb///cc;xxx:yyy:' ':;' '/'
1: a/bbb///cc
--> a
--> bbb
--> cc
2: xxx
--> xxx
3: yyy
--> yyy
プログラムのソース
#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 */
関連項目
index(3), memchr(3), rindex(3), strchr(3), strpbrk(3), strsep(3), str-
spn(3), strstr(3), wcstok(3)
GNU 2008-10-29 STRTOK(3)
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 >= 1 ||
_XOPEN_SOURCE || _POSIX_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
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 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 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 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.
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
#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 */
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.22 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 2008-10-29 STRTOK(3)