Skip to content
Prev 176633 / 398503 Next

Does R support [:punct:] in regexps?

On 09/04/2009 7:10 AM, Daniel Brewer wrote:
It does, but remember that the [] chars are part of the character class; 
you need extra [] brackets around the whole thing, and you don't want 
the slash delimiters:

 > x <- c("yoda-yoda","billy!")
 > gsub("[[:punct:]]","",x)
[1] "yodayoda" "billy"

Duncan Murdoch