Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hhejo/regex-practice
https://github.com/hhejo/regex-practice
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/hhejo/regex-practice
- Owner: hhejo
- Created: 2024-08-11T01:17:26.000Z (5 months ago)
- Default Branch: master
- Last Pushed: 2024-10-16T00:53:12.000Z (3 months ago)
- Last Synced: 2024-10-17T14:10:58.973Z (3 months ago)
- Size: 1000 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Regex 연습
## 1. 이메일
```re
/^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}$/g
```## 2. 전화번호
```re
/^(01[016789]{1})-?[0-9]{3,4}-?[0-9]{4}$/g
```