Skip to content
Prev 360654 / 398503 Next

Grep command

Hi Steven,

grep uses regex... so you can use this:

-grep("age$",x): it says: match "a", then "g", then "e" and stop.  The "$"
menas until here and no more.
[1] 5

2016-05-04 1:02 GMT-05:00 Jim Lemon <drjimlemon at gmail.com>: