Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion vignettes/regular-expressions.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ You can also create your own __character classes__ using `[]`:
* `[a-z]`: matches every character between a and z
(in Unicode code point order).
* `[^abc]`: matches anything except a, b, or c.
* `[\^\-]`: matches `-` or `\`.
* `[\^\-]`: matches `-` or `^`.

There are a number of pre-built classes that you can use inside `[]`:

Expand Down