String クラスは文字列を表すために使用できます。Java プログラム内のすべての文字列リテラルはインスタンスとして実装されます。文字列クラス。文字列は定数であり、その値は 一度作成すると変更できません (immutable)。
startsWith(String class) メソッドを使用すると、文字列が特定の文字列で始まるかどうかを確認でき、ブール値 true またはを返します。間違い 。
構文public boolean startsWith(String prefix)
public class StringStartsWithSubStringTest { public static void main(String[] args) { String str = "WelcomeToTutorialsPoint"; if(str.startsWith("<strong>Welcome</strong>")) { System.out.println("Begins with the specified word!"); } else { System.out.println("Does not begin with the specified word!"); } } }
Begins with the specified word!
以上がJavaで文字列が特定の部分文字列で始まるかどうかを確認するにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。