string クラス : EndsWith(string) メソッド
説明
呼び出し元文字列が引数で終わるかどうかを示すブール値を返します。
構文
stringInstance.EndsWith(string endString)
引数
クラス | 名前 | 説明 |
string | endString | 終了文字列 |
返り値
クラス | 説明 |
bool | 呼び出し元文字列が引数で終わるかどうかを示すブール値 |
サンプルコード
1: | string str = "sample string"; |
2: | bool endWith = str.EndsWith("ring"); // 結果(endWith)は、true. |
注意
このメソッドは、Rice ver 1.0.1.1から導入されたメンバーです。
System.String.EndsWith(String)のラッパーです。
呼び出し元文字列が引数で終わる場合、trueを返します。 それ以外の場合はfalseを返します。