substr

メソッド Type method
文字列.substr(開始位置,抜き出す数) Format string. Substr (start position, extract)
Commentary
文字列を指定した位置から指定した文字数分抜き出します。 Minutes抜KI出SHIMASU specified character string from the specified location.
サンプルコード Sample code
str = "ABCDEFG"; str = "ABCDEFG";
outputs[0] = str.substr(2,5); outputs [0] = str.substr (2,5);