📄 test.java
字号:
package org.hwmhere.email;
import org.hwmhere.util.math.BaseType;
import com.sun.jndi.cosnaming.IiopUrl.Address;
public class Test {
/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
String receiver = "ab@localhost";
String user ;
String host ;
int i = receiver.indexOf('@');
// user = new String
user=receiver.substring(0,i);
host=receiver.substring(i+1);
System.out.print(user+"@"+host);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -