We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
For example: re2_match(pattern, string)
re2_match(pattern, string)
for some the reverse arg order is more natural (string, pattern) (see e.g., stringr functions)
(string, pattern)
stringr
(string, pattern) works better with magrittr's pipe operator to
magrittr
string %>% re2_match(pattern)
what do you think?
The text was updated successfully, but these errors were encountered:
+1
Sorry, something went wrong.
Change: arguments order #6
1a9f78b
Input is the first one, and pattern is the second one.
Changes are landed.
No branches or pull requests
For example:
re2_match(pattern, string)
for some the reverse arg order is more natural
(string, pattern)
(see e.g.,stringr
functions)(string, pattern)
works better withmagrittr
's pipe operator towhat do you think?
The text was updated successfully, but these errors were encountered: