Pattern Description
[abc] Match a, b or c
[^abc] Match except a, b or c
[a-z] Match a to z

#↓ Source Code

| Pattern  | Description            |
|----------|------------------------|
| `[abc]`  | Match a, b or c        |
| `[^abc]` | Match except a, b or c |
| `[a-z]`  | Match a to z           |
{.left-text}
Comments