original | 分解する前の文字列。 The string before the decomposition. |
separater | 区切り文字。 The character used as the separater. |
correct_number | 分解して得られる部分文字列の個数の正解。
実際の部分文字列の個数がこの値と一致しない場合は
プログラムをエラー終了する。 The correct number of the separated partial strings. If the actual number of the separated partial strings is not equal to this value, the program finishes as an error. |
variable_name | 引数originalが表す文字列の名前または説明。
エラーメッセージの一部として用いられる。 The name or description of the original string, which is used in an error message. |
エラー : 文字列originalの値として "eabcdefgfedcdeedcbae"が 指定されていますが、この文字列中の"e"の個数は きっかり3個でなければならないところ、実際には6個でした。 |
ERROR : "eabcdefgfedcdeedcbae" was specified for the value of string "original", which must consist of exactly 3 characters of "e" while the actual number was 6.” |