string クラス : Split(string,bool) メソッド
説明
指定された文字列によって、呼び出し元の文字列を分割した文字列のリストを取得します。結果が空の文字列を含むかどうかを指定することができます。
構文
stringInstance.Split(string splitter, bool includeEmpty)
引数
クラス | 名前 | 説明 |
string | splitter | 区切り文字列。 |
bool | includeEmpty | 結果に空の文字列を含むかどうかを示す値。 |
返り値
クラス | 説明 |
list{string} | 分割されている部分文字列のリスト。 |
サンプルコード
//anyStringはstring型のインスタンス.
list{string} splitedStrings = anyString.Split("ww", false);
注意
System.String.Split(String[],StringSplitOptions)のラッパーです。