indexof()和lastIndexOf()
请看下面的判断,你就知道了。。
if(a.indexOf("@")!=-1&&a.indexOf("@")!=0)//当@在字符串中并且不是第一个字符
{
if((a.lastIndexOf(".com")!=-1&&a.indexOf(".com")!=0)||(a.lastIndexOf(".cn")!=-1&&a.indexOf(".cn")!=0)){
InsertEmmAddress.InsertEmailAddress(a);
System.out.println("a===" + a);
}
}
看懂了吗,很简单,没什么难的,不过搞得我头都大了。