文字列を指定した区切り文字で分割する。
区切り文字の個数はいくつでも良い。
分割後の文字列から成る配列を戻り値として返す。
Decompose a string into multiple parts
by a specified character (separater).
The number of separaters is arbitrary.
An array composed of the decomposed strings is returned.
引数originalが表す文字列を引数separaterが表す文字で分解して得られる
部分文字列から成る配列。
配列の末尾を表すため、最終要素にはNULLが入る。
An array composed of partial strings
obtained by decomposing the string, expressed by argument original,
by the character given by argument separater.
NULL is inserted at the final component
to express the end of the array.