目前整理出来三种形式:
可根据实际需要选择使用
String userNameUrl;
int beginIndex = 0;
int endIndex = 0;
userNameUrl = "454512@hongri@4944115455d9591b274648a06303d910de";
/**
* 方法一:
*/
beginIndex = userNameUrl.indexOf("@")+1;
endIndex = userNameUrl.lastIndexOf("@");
System.out.println(userNameUrl.substring(beginIndex,endIndex));
/**
* 方法二:
*/
System.out.println(userNameUrl.split("@")[1].toString());
/**
* 方法三:
*/
System.out.println(userNameUrl.substring(7, 13));
运行结果:
String str="abc.def";
String str1=str.substring(str.indexOf(".")+1, str.length());
System.out.println(str1);
String.split("指定字符串")[1];这个就是你要的指定字符串后面的子字符串了。
返回点号的序列号,然后用String截取从0到序列号之间的字符串,就可以了
String str = "xxxx.xxx";
int pos = str.indexOf(".");
if(pos > 0) String newStr = str.substring(0,pos + 1);