在特定符号后拆分字符串

时间:2016-03-18 12:01:58

标签: java string split

我有一个字符串(电子邮件的格式),例如random@abc

我希望得到@背后的部分。所以在这个例子中abc

我该怎么做?

2 个答案:

答案 0 :(得分:1)

String str = "random@abc";
// get the index of `@` and then get content after it.
String res = str.substring(str.indexOf('@') + 1);
System.out.println(res); // abc

答案 1 :(得分:1)

您可以这样做:

String email = "something@abc.com";
String res = email.split("@")[1];
System.out.println(res);