[R] (no subject)
Audrey Riddell
audreykaspi at gmail.com
Tue Sep 6 08:56:04 CEST 2016
Hello,
I am trying to remove brackets and the text contained in brackets. I tried
to do a user defined formula... my attempt at this is pasted below.
cleanBetweenBrackets <- function(String)
{ return(gsub("\(.*?\)", "", String))}
I keep getting errors (namely that there is an unrecognised escape
character in the string). I have looked at regex forums a bit, but cant
figure this out.
I want the above formula to be able to produce the following result
>Str<-"The cat is crazy (but not too crazy)"
>StrNoBrackets<-cleanBetweenBrackets(Str)
>StrNoBrackets
[1] "The cat is crazy "
Assistance would be appreciated,
Audrey
[[alternative HTML version deleted]]
More information about the R-help
mailing list