string クラス : EndsWith(string) メソッド

説明

呼び出し元文字列が引数で終わるかどうかを示すブール値を返します。

構文

stringInstance.EndsWith(string endString)

引数

クラス名前説明
stringendString終了文字列

返り値

クラス説明
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を返します。

参照リンク

Copyright © Rice All rights reserved.