写一个页面jsp正则表达式判断邮箱格式
时间: 2023-05-26 09:05:57 浏览: 87
java使用正则表达式判断邮箱格式是否正确的方法
<!DOCTYPE html>
<html>
<head>
<title>邮箱格式判断</title>
</head>
<body>
<h2>请输入邮箱地址:</h2>
<form action="#" method="post">
<input type="text" name="email">
<input type="submit" value="判断">
</form>
<%
String email = request.getParameter("email");
if(email != null) {
String regex = "^([a-zA-Z0-9_-])+@([a-zA-Z0-9_-])+(.[a-zA-Z0-9_-])+";
if(email.matches(regex)) {
out.println("<p>邮箱格式正确。</p>");
} else {
out.println("<p>邮箱格式错误。</p>");
}
}
%>
</body>
</html>
阅读全文