Skip to content
Prev 323429 / 398503 Next

grepl

On 13-05-13 4:19 AM, Francesco Isotta wrote:
Use grepl(".", string, fixed=TRUE).


I tried also to insert \. but it
You did not insert \., because you'd need to escape the backslash to do 
that.  grepl("\\.", string) would work.

Duncan Murdoch