JAVA—— lastIndexOf和substring

1、lastIndexOf

int x = a.lastIndexOf(b),表示b字符串在a字符串中最后出现的位置。如

a= "abcdabcd";b="d";那么x的值为7.

2、substring

String str;

str=str.substring(int beginIndex);截取掉str从首字母起长度为beginIndex的字符串,将剩余字符串赋值给str;

str=str.substring(int beginIndex,int endIndex);截取str中从beginIndex开始至endIndex结束时的字符串,并将其赋值给str;

class Test

{

public static void main(String[] args)

{

String s1 ="1234567890abcdefgh";

s1 = s1.substring(0,9);

System.out.println(s1);

}

}

运行结果:123456789

你可能感兴趣的:(JAVA—— lastIndexOf和substring)