AI·빅데이터 융합 경영학 Study Note
파이썬에서 re 모듈의 search() 함수를 사용해서 이메일 주소를 체크하는 코드를 짜줘 본문
import re
def is_valid_email(email):
# Define a regular expression pattern for a valid email address
pattern = r'^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}$'
# Use the search() function to find a match in the email string
match = re.search(pattern, email)
# If a match is found, it's a valid email address
if match:
return True
else:
return False
# Example usage:
email = "example@email.com"
if is_valid_email(email):
print(f"{email} is a valid email address.")
else:
print(f"{email} is not a valid email address.")
'C·Java·Python' 카테고리의 다른 글
자바 프로젝트 이름 변경 (0) | 2024.04.02 |
---|---|
자바를 설치 도중 시스템 변수 path를 삭제했을 때 복구 방법 (0) | 2024.03.11 |
파이썬 문자열을 리스트로 변환하고 다시 합치기 (0) | 2024.01.09 |
파이썬 앞뒤의 불필요한 문자열 잘라내기 (0) | 2024.01.09 |
파이썬 경로 찾기 (3) | 2024.01.09 |