Last active
December 12, 2015 09:19
-
-
Save glamp/4750670 to your computer and use it in GitHub Desktop.
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
library(stringr) | |
names(iris) | |
#[1] "Sepal.Length" "Sepal.Width" "Petal.Length" "Petal.Width" "Species" | |
names(iris) <- str_replace_all(names(iris), "[.]", "_") | |
names(iris) | |
#[1] "Sepal_Length" "Sepal_Width" "Petal_Length" "Petal_Width" "Species" | |
s <- c("Go to Heaven for the climate, Hell for the company.") | |
str_extract_all(s, "[H][a-z]+ ") | |
#[[1]] | |
#[1] "Heaven " "Hell " |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment