x <- readLines('yourFile')
x <- x[grepl('myWord', x)]
On Tue, Nov 16, 2010 at 7:37 AM, romzero wrote:
>
> Can i use "readLines" to extract only the linees with a specific word within?
>
> If yes, how?
>
> Tnx for help.
> --
> View this message in context:
> http://r.789695.n4.nabble.com/Questio
On Nov 16, 2010, at 7:37 AM, romzero wrote:
Can i use "readLines" to extract only the linees with a specific
word within?
If yes, how?
Just use:
lines <- readLines( )
desired <- lines[grep("word", lines]
Tnx for help.
--
View this message in context:
http://r.789695.n4.nabble.com/
Can i use "readLines" to extract only the linees with a specific word within?
If yes, how?
Tnx for help.
--
View this message in context:
http://r.789695.n4.nabble.com/Question-about-readLines-tp3044701p3044701.html
Sent from the R help mailing list archive at Nabble.com.
3 matches
Mail list logo