I have a dataframe with a column like this
Id Comment
1 \u009cYes yes for ever for ever the boys cried in their ringing voices with softened faces on 02/14/2016
2 \u009cYes yes for ever for ever the cried in their ringing voices with softened faces on 01/14/2010
3 \u009cYes yes for ever for ever t 12/04/2003
4 \u009c for ever for ever ringing voices 07/02/2002
5 \u009c for ever for ever ringing softened faces 07/09/2001
How do I use gsub to replace all the characters but ringing
and 02/14/2016
The final column should be like this
Id Comment
1 ringing 02/14/2016
2 ringing 01/14/2010
3 12/04/2003
4 ringing 07/02/2002
5 ringing 07/09/2001
-----Updated question based on comments from G. Grothendieck, Frank and Dason