-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
22e441d
commit ae2e5ed
Showing
97 changed files
with
5,080 additions
and
425 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,9 @@ | ||
Package: RVerbalExpressions | ||
Title: Create regular expressions easily | ||
Version: 0.0.0.9000 | ||
Authors@R: | ||
person(given = "Tyler", | ||
family = "Littlefield", | ||
role = c("aut", "cre"), | ||
email = "[email protected]") | ||
Authors@R: as.person(c( | ||
"Tyler Littlefield <[email protected]> [aut, cre]" | ||
)) | ||
Description: The goal of `RVerbalExpressions` is to make it easier to construct | ||
regular expressions. Grammar and functionality inspired by | ||
[VerbalExpressions](https://github.com/VerbalExpressions). Usage of the | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,28 @@ | ||
# Generated by roxygen2: do not edit by hand | ||
|
||
export("%>%") | ||
export(any_of) | ||
export(anything) | ||
export(anything_but) | ||
export(begin_capture) | ||
export(br) | ||
export(digit) | ||
export(end_capture) | ||
export(end_of_line) | ||
export(find) | ||
export(line_break) | ||
export(maybe) | ||
export(not) | ||
export(one_or_more) | ||
export(or) | ||
export(range) | ||
export(rx) | ||
export(rx_any_of) | ||
export(rx_anything) | ||
export(rx_anything_but) | ||
export(rx_begin_capture) | ||
export(rx_br) | ||
export(rx_digit) | ||
export(rx_end_capture) | ||
export(rx_end_of_line) | ||
export(rx_find) | ||
export(rx_line_break) | ||
export(rx_maybe) | ||
export(rx_not) | ||
export(rx_one_or_more) | ||
export(rx_or) | ||
export(rx_range) | ||
export(rx_something) | ||
export(rx_something_but) | ||
export(rx_start_of_line) | ||
export(rx_tab) | ||
export(rx_whitespace) | ||
export(rx_with_any_case) | ||
export(rx_word) | ||
export(sanitize) | ||
export(something) | ||
export(something_but) | ||
export(start_of_line) | ||
export(tab) | ||
export(whitespace) | ||
export(with_any_case) | ||
export(word) | ||
importFrom(magrittr,"%>%") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# RVerbalExpressions 0.0.0.9000 | ||
|
||
* Added a `NEWS.md` file to track changes to the package. | ||
* Deprecated `then()` and `any` in favor of `any_of()` and `find()`. | ||
* Deprecated `then()` and `any()` in favor of `any_of()` and `find()`. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.