java中substring的用法:
str=str.substring(int beginIndex);
截取掉str从首字母到beginIndex之前的字符串,将从beginIndex开始的字符串赋值给str;
str=str.substring(int beginIndex,int endIndex);
截取str中从beginIndex开始至endIndex结束时的字符串,并将其赋值给str
示例:
String str=”Hellow World”;
<1> str=str.substring(2);
returns “llow World”
<2>str=str.substring(4,9);
returns “ow Wo”