Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/hhejo/regex-practice


https://github.com/hhejo/regex-practice

Last synced: about 1 month ago
JSON representation

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
```