I have a column whose pattern of data is similar to the one here reported:
strings = c('AIR:MT.S:R-V:Q',
'AIR:MT.T:P-V:Q')
I am looking for a function I can apply in a way that with dplyr I can remove all the part before the .
Thus, the wanted output would be like this:
S:R-V:Q
T:P-V:Q
How it be that possible to do