[R] Question about readLines

2010-11-16 Thread romzero
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.

Re: [R] Question about readLines

2010-11-16 Thread David Winsemius
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( appropriate-arguments ) desired - lines[grep(word, lines] Tnx for help. -- View this message in context:

Re: [R] Question about readLines

2010-11-16 Thread jim holtman
x - readLines('yourFile') x - x[grepl('myWord', x)] On Tue, Nov 16, 2010 at 7:37 AM, romzero romz...@yahoo.it 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: