[R] grep help (character ommission)
arun
smartpink111 at yahoo.com
Wed May 1 14:55:26 CEST 2013
HI,
You could also do:
vec1<- c("Intensity","Intensity L", "Intensity H", "Intensity Rep1")
identical(setdiff(seq_along(vec1),grep("H|L",vec1)),as.integer(c(1,4)))
#[1] TRUE
A.K.
----- Original Message -----
From: Johannes Graumann <johannes_graumann at web.de>
To: r-help at stat.math.ethz.ch
Cc:
Sent: Wednesday, May 1, 2013 4:37 AM
Subject: [R] grep help (character ommission)
Hello,
Banging my head against a wall here ... can anyone light the way to a
pattern modification that would make the following TRUE?
identical(
grep(
"^Intensity\\s[^HL]",
c("Intensity","Intensity L", "Intensity H", "Intensity Rep1")),
as.integer(c(1,4)))
Thank you for your time.
Sincerely, Joh
______________________________________________
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.
More information about the R-help
mailing list