[R] grep : escape "*"

Gábor Csárdi csardi at rmki.kfki.hu
Fri Jan 9 16:49:21 CET 2009


* must be escaped for grep with \ and \ must be escaped for R itself
with another \, so you need

grep("\\*", c("/3", "2*3", "4-4"))

Gabor

2009/1/9 David Hajage <dhajage.r at gmail.com>:
> Dear R useRs,
>
> Sorry for this foolish question, but I can't find how to escape the *
> character when using grep :
>
>> grep("-", c("/3", "2*3", "4-4"))
> [1] 3
>> grep("/", c("/3", "2*3", "4-4"))
> [1] 1
>> grep("*", c("/3", "2*3", "4-4"))
> Erreur dans grep("*", c("/3", "2*3", "4-4")) :
>  expression régulière incorrecte '*'
> De plus : Warning message:
> In grep("*", c("/3", "2*3", "4-4")) :
>  erreur rgcomp : 'Expression régulière précédente incorrecte'
>> grep("\*", c("/3", "2*3", "4-4"))
> Erreur dans grep("*", c("/3", "2*3", "4-4")) :
>  expression régulière incorrecte '*'
> De plus : Warning messages:
> 1: '\*' est un code escape non reconnu dans une chaîne de caractères
> 2: code escape non reconnu éliminé de "\*"
> 3: In grep("*", c("/3", "2*3", "4-4")) :
>  erreur rgcomp : 'Expression régulière précédente incorrecte'
>
> Best regards,
>
> david
>
>        [[alternative HTML version deleted]]
>
>
> ______________________________________________
> R-help at r-project.org mailing list
> https://stat.ethz.ch/mailman/listinfo/r-help
> PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
> and provide commented, minimal, self-contained, reproducible code.
>
>



-- 
Gabor Csardi <Gabor.Csardi at unil.ch>     UNIL DGM




More information about the R-help mailing list