java講座
sample1 substring
sample2 equalsIgnoreCase
sample3 startsWith endsWith
sample4 indexOf lastIndexOf
sample5 split
sample6 format
top
blog
sample2 equalsIgnoreCase
sample3 startsWith endsWith
sample4 indexOf lastIndexOf
sample5 split
sample6 format
top
blog
sample1 JAVA講座 文字列関数 substring
ここではJAVAのサンプルプログラムを紹介しています。文字列関数 substringです。
result = str.substring(3,5);
として文字列の3番目から5番目の文字列を取り出します。文字列は0から数えますので, 結果は
de
となります。