substring用法

来源:互联网 发布:js replace函数填变量 编辑:程序博客网 时间:2024/06/06 12:46

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

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