I have a grep
puzzle that's eluding me: I'd like to remove the text following the final period in a collection of strings (i am using R, so perl
syntax is available).
For example, say the string is ABCD.txt
this grep
would return ABCD
, and if the text was abc.com.foo.bar
, it would return abc.com.foo
.
Any help greatfully appreciated (i don't think i can drink any more coffee!).