我有一个字符串(电子邮件的格式),例如random@abc
。
我希望得到@
背后的部分。所以在这个例子中abc
。
我该怎么做?
答案 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);