I have
str=c("00005.profit", "00005.profit-in","00006.profit","00006.profit-in")
and I want to get
"00005.profit" "00006.profit"
How can I achieve this using grep in R?
|
Here is one way:
We define a regular expression as digits followed by |
||||
|
|
|
Dirk's answer is pretty much the ideal generalisable answer, but here are a couple of other options based on the fact that your example always has a 1:
2:
Both return:
which you can then wrap in
These will then return:
Another non-generalisable solution would be to just take the first 12 characters (assuming string length for the part you want to keep doesn't change):
|
|||
|
|
|
I'm actually interpreting your question differently. I think you might want
That is, if you only want the strings that end with |
|||
|
|
.profit? – James Sep 18 '12 at 2:24