If a string has more than one match, this will only return the first one.
extract_after(full_string, after_string, trim_spaces = TRUE)
The full character string to extract from.
A pattern specifying the string should be extracted after this.
logical T/F, if there are any spaces within the extracted string, they will be removed. Default is TRUE.
A string
extract_after("What does the fox say?", after_string = "What does the")
#> [1] "fox say?"