library(stringr) txt <- c("SHOW: Game of Thrones 7:00 PM EST", "SHOW: The Outsider 3:00 PM EST", "SHOW: Don't Be a Menace to South Central While Drinking Your Juice In The Hood 10:00 AM EST")pattern <- "\\bSHOW:\\s+(.*?)\\s+\\d{1,2}:\\d{1,2}\\s+[AP]M\\b"str_match(txt, pattern)[,2]
Standard input is empty
[1] "Game of Thrones" [2] "The Outsider" [3] "Don't Be a Menace to South Central While Drinking Your Juice In The Hood"
The brand new service which powers Ideone!
Widget for compiling and running the source code in a web browser!