文字列の末尾が一致しているか判定するには、.endsWith()を使用します。
構文
- (java.lang.String.endsWith)
- public boolean endsWith(String suffix)
引数 | 型 | 意味 |
---|---|---|
suffix | String | 比較文字列 |
サンプルソース
例)endsWithを使ったサンプル
1 2 3 4 5 6 |
//文字列定義 string val = "abcde"; //末尾一致判定 boolean result1 = val.endsWith("cde"); //末尾が"cde"と一致するか判定 boolean result2 = val.endsWith("CDE"); //末尾が"CDE"と一致するか判定 |
- (結果)
- result1 ⇒ true result2 ⇒ false
備考
- 文字列の先頭が一致しているか判定するには、.startsWithを使用します。
⇒ 文字列の先頭が一致していうか判定する(.startsWith)
result1 ⇒ true ?
ご指摘ありがとうございます!
修正させて頂きました。