
 AI时代,找源码已成为过去式,纪念我过去的十年0(回)
                        65天前
AI时代,找源码已成为过去式,纪念我过去的十年0(回)
                        65天前 还有人吗2(回)
                        83天前
还有人吗2(回)
                        83天前 会python真的可以为所欲为0(回)
                        563天前
会python真的可以为所欲为0(回)
                        563天前 这里还有人吗2(回)
                        748天前
这里还有人吗2(回)
                        748天前 这里还有人吗0(回)
                        748天前
这里还有人吗0(回)
                        748天前 每天面对着电脑屏幕,敲打键盘。我所面对的并不只是代码,而是一种生活方式。0(回)
                        973天前
每天面对着电脑屏幕,敲打键盘。我所面对的并不只是代码,而是一种生活方式。0(回)
                        973天前	/**
	 * 确认字符串是否为email格式
	 * 
	 * @param strEmail
	 * @return
	 */
	public static boolean isEmail(String strEmail) {
		String strPattern = "^[a-zA-Z][\\w\\.-]*[a-zA-Z0-9]@[a-zA-Z0-9][\\w\\.-]*[a-zA-Z0-9]\\.[a-zA-Z][a-zA-Z\\.]*[a-zA-Z]$";
		Pattern p = Pattern.compile(strPattern);
		Matcher m = p.matcher(strEmail);
		return m.matches();
	}


