Skip to content

Commit

Permalink
Update KR.md
Browse files Browse the repository at this point in the history
  • Loading branch information
hahwul authored Feb 18, 2023
1 parent 55be786 commit e78e21e
Showing 1 changed file with 13 additions and 4 deletions.
17 changes: 13 additions & 4 deletions LocalSpecialty/KR.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# 🇰🇷 KR
##
- 주민등록번호(RRN): `\d{2}([0]\d|[1][0-2])([0][1-9]|[1-2]\d|[3][0-1])[-]*[1-4]\d{6}`
- 운전면허번호(Driver License Serial Number): `(\d{2}-\d{2}-\d{6}-\d{2})`
- 전화번호(Mobile Number): `^\d{3}-\d{3,4}-\d{4}$`
## Privacy
### 주민등록번호(RRN):
```
\d{2}([0]\d|[1][0-2])([0][1-9]|[1-2]\d|[3][0-1])[-]*[1-4]\d{6}
```
### 운전면허번호(Driver License Serial Number):
```
(\d{2}-\d{2}-\d{6}-\d{2})
```
### 전화번호(Mobile Number):
```
^\d{3}-\d{3,4}-\d{4}$
```

0 comments on commit e78e21e

Please sign in to comment.