Update formatting
This commit is contained in:
parent
1a17fe6148
commit
35b6899663
|
@ -18,7 +18,7 @@ description: |
|
||||||
### Character classes
|
### Character classes
|
||||||
|
|
||||||
| Pattern | Description |
|
| Pattern | Description |
|
||||||
| -------- | ------------------------------- |
|
| -------- | ------------------------------------ |
|
||||||
| `.` | Any character, except newline |
|
| `.` | Any character, except newline |
|
||||||
| `\w` | Word |
|
| `\w` | Word |
|
||||||
| `\d` | Digit |
|
| `\d` | Digit |
|
||||||
|
@ -29,7 +29,7 @@ description: |
|
||||||
| `[abc]` | Any of a, b, or c |
|
| `[abc]` | Any of a, b, or c |
|
||||||
| `[a-e]` | Characters between `a` and `e` |
|
| `[a-e]` | Characters between `a` and `e` |
|
||||||
| `[1-9]` | Digit between `1` and `9` |
|
| `[1-9]` | Digit between `1` and `9` |
|
||||||
| `[^abc]` | Any character except a, b and c |
|
| `[^abc]` | Any character except `a`, `b` or `c` |
|
||||||
|
|
||||||
### Anchors
|
### Anchors
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue