|
|
☞
Top >
Proserpine Macro >
Commands >
Substring系
Substring系メソッド
|
|
Substring系メソッド
(文字列).Substring(index)
(文字列).Substring0(length)
(文字列).SubstringUsing(int_index)
(文字列).SubstringUsingL(intl_index)
(文字列).SubstringUntilUsing0(char_collections)
(バイト列).SubstringUsing(int_index)
(バイト列).SubstringUsingL(intl_index)
(文字列).Substring(index)
indexの位置以降の文字列を取得します。
例: set: str[1]="abcdef".Substring(3); // str[1]には def が設定される
(文字列).Substring0(length)
先頭からlengthの長さの文字列を取得します。
例: set: str[1]="abcdef".Substring0(3); // str[1]には abc が設定される
(文字列).SubstringUsing(int_index)
int[int_index]の位置から
int[int_index+1]の長さの文字列を取得します。
(文字列).SubstringUsingL(intl_index)
intl[int_index]の位置から
intl[int_index+1]の長さの文字列を取得します。
(文字列).SubstringUntilUsing0(char_collections)
int[0]の位置から
文字列char_collectionsに含まれる文字のうち、
どれかが出現するまでの間を取得します。
int[0]の変数をパラメータとして使用します。
|
|
|