Skip to content

Does R support [:punct:] in regexps?

2 messages · Daniel Brewer, Duncan Murdoch

#
Hello does R support [:punct:] in regular expressions?  I am trying to
strip all regular expressions for a vector of strings.
[1] "yoda-yoda" "billy!"

Thanks

Dan
#
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