Skip to content

Instantly share code, notes, and snippets.

@dgkeyes
Created December 22, 2020 22:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dgkeyes/6585259f12425adcf57c33a68b10e4b1 to your computer and use it in GitHub Desktop.
Save dgkeyes/6585259f12425adcf57c33a68b10e4b1 to your computer and use it in GitHub Desktop.
library(tidyverse)
text <- "1. The resources were helpful (e.g. computers, office supplies)."
text %>%
tibble() %>%
set_names("original_text") %>%
separate(original_text, into = c("number", "text"), sep = ". ", extra = "merge") %>%
pull(text)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment