Hi, I'm trying to search the data in a column for the first two characters, and return all rows that match the search criteria. Any suggestions? Thanx -- View this message in context: http://r.789695.n4.nabble.com/Searching-for-the-first-two-characters-of-a-string-tp4089862p4089862.html Sent from the R help mailing list archive at Nabble.com.
Remko Duursma
2011-Nov-21 00:13 UTC
[R] Searching for the first two characters of a string
dfr <- data.frame(txt= c("abab","ghghg","ththt","dfdfdf"), yvar=1:4) ind <- substr(dfr$txt,1,2) dfr[ind == "ab",] greetings, Remko -- View this message in context: http://r.789695.n4.nabble.com/Searching-for-the-first-two-characters-of-a-string-tp4089862p4090042.html Sent from the R help mailing list archive at Nabble.com.