main
Tran Hau 2020-05-01 20:29:23 +07:00
parent 0dfbc15db3
commit 21a8eb1e05
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ Read [Golang-Regex-Tutorial](https://github.com/StefanSchroeder/Golang-Regex-Tut
| `.` | any character, default not including `\n` |
| `[xy]` | `x` or `y` character |
| `[^xy]` | not `x` and `y` character |
| `x|y` | `x` or `y` |
| `x\|y` | `x` or `y` |
| `x*` | 0 or more `x`, prefer **more** |
| `x+` | 1 or more `x`, prefer **more** |
| `x?` | 0 or 1 `x` , prefer 1 |