当前位置: 技术问答>java相关
关于字符串的操作,我想得到字符串的长度,和他开始两位组成的新的字符串,例如::
来源: 互联网 发布时间:2015-08-12
本文导语: String temp="abcdef"; 我想得到一个新的字符串“ab”和"be" 怎么得到?? int len=temp.length; 这样是得到他的长度吗? | int len = temp.length(); String subTemp = temp.substring(0,1);
String temp="abcdef";
我想得到一个新的字符串“ab”和"be"
怎么得到??
int len=temp.length; 这样是得到他的长度吗?
我想得到一个新的字符串“ab”和"be"
怎么得到??
int len=temp.length; 这样是得到他的长度吗?
|
int len = temp.length();
String subTemp = temp.substring(0,1);
String subTemp = temp.substring(0,1);