A 文字列 は、文字 の 不変シーケンスを表すオブジェクトであり、一度作成すると変更することはできません。文字列オブジェクトは、 java.lang.String クラスを使用して作成できます。
String クラスの endsWith() メソッドを使用して、文字列 が特定の文字列 で終わるかどうかを確認できます。ブール値 true または false。
public boolean endsWith(String prefix)
public class StringEndsWithSubStringTest { public static void main(String[] args) { String str = "WelcomeToTutorialsPoint"; if(str.endsWith("Point")) { System.out.println("Ends with the specified word!"); } else { System.out.println("Does not end with the specified word!"); } } }
Ends with the specified word!
以上がJavaで文字列が特定の部分文字列で終わるかどうかを確認するにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。