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
When hitting "Send Regex To Console" in the Output tab, the console shows something like the following:
pattern <- "\w+ " # perl=TRUE replacement <- "NO "
Wouldn't be better to integrate the parameters into the actual function used? In this case, it could translate into:
sub(pattern = "\w+", replacement = "NO ", x = readr::read_file("LICENSE"), perl = TRUE)
Or maybe:
sub(pattern = "\w+", replacement = "NO ", x = YOUR_CHARACTER_VECTOR_HERE, perl = TRUE)
Thanks for the awesome package!
The text was updated successfully, but these errors were encountered:
Sorry it's been so long to get to this. This is a great idea and something I'll think about doing in the future. Thanks for the suggestion!
Sorry, something went wrong.
No branches or pull requests
When hitting "Send Regex To Console" in the Output tab, the console shows something like the following:
Wouldn't be better to integrate the parameters into the actual function used? In this case, it could translate into:
Or maybe:
Thanks for the awesome package!
The text was updated successfully, but these errors were encountered: