java講座

sample1 substring
sample2 equalsIgnoreCase
sample3 startsWith endsWith
sample4 indexOf lastIndexOf
sample5 split
sample6 format

top
blog

sample3 JAVA講座 文字列関数 startsWith endsWith

ここではJAVAのサンプルプログラムを紹介しています。
文字列関数 startsWith は文字列が引数の文字列で始まっているかどうかを比較します。 文字列関数 endsWith は文字列が引数の文字列で終わっているかどうかを比較します。



boolean result = str.startsWith("abc");
としてstrが"abc"で始まるかを判定します。

result = str.endsWith("efg");
としてstrが"efg"で終わるかを判定します。
結果は

true false true false
となります。