I´m trying this
string <- ": FC Relacionado con Paciente FC Protocolo1 FC Comunicacion entre Profesionales1 FC Disponibilidad"
str_extract_all(string, "FC.*1")
It gives back this result:
[1] "FC Relacionado con Paciente FC Protocolo1 FC Comunicacion entre Profesionales1"
What I want is this:
[1] FC Protocolo1 FC Comunicacion entre Profesionales1"
What should I change?