What's really the problem with:

> regexpr( '\.odt$', "xxxxYodt", perl=TRUE )
        Warning: '\.' is an unrecognized escape in a character string
        Warning: unrecognized escape removed from "\.odt$"
        [1] 5
        attr(,"match.length")
        [1] 4

I know that I could use:
> regexpr( '[.]odt$', "xxxxYodt", perl=TRUE )

But it seems to me that the first expression is also
an accepted regular expression in accordance with perl.

Regards - Wolfram

______________________________________________
R-help@stat.math.ethz.ch 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.

Reply via email to