| 文字列のトークンを返す
split(+string, -tokens)
split(+regexp, +string, -tokens)
split/2
"tokens"は、空白で区切られた"string"(文字列の)部分文字列を返す
split/3
"tokens"は、"regexp"で区切られた"string"(文字列の)部分文字列を返す
引数
regexp アトム
string アトム
tokens リスト
例題
split('one two three', L) => L = [one,two,three]
split('%s*:%s*', 'one : two :three', L)
=> L = [one,two,three]
標準
この述語は、ISO-Prolog標準の要件ではありません。
以下も参照して下さい
正規表現,
match/2/3,
match_all/3,
substitute/4,
substitute_all/4,
split/2/3,
chop/2,
get_line/1/2,
|