64. Find Users With Valid E-Mails
https://leetcode.com/problems/find-users-with-valid-e-mails/description/
Write a solution to find the users who have valid emails. A valid e-mail has a prefix name and a domain where: The prefix name is a string that may contain letters (upper or lower case), digits, underscore '_', period '.', and/or dash '-'. The prefix name must start with a letter. The domain is '@leetcode.com'. Return the result table in any order.
Select * From Users where mail regexp '^[a-zA-Z][a-zA-Z0-9_.-]*@leetcode[.]com$'
정규표현식 regexp 를 사용 문제에서 사용된 개념들 ^ 시작하는 문자열 $ 끝나는 문자열 [] []안에 나열된 패턴에 해당하는 문자열 찾기 * 0회 이상 나타나는 문자 . 문자 하나