I have a list of strings:
c("brown::value-twostancenpq", "twitter_ld_homepage:xxxRestApisCreateTweet::create_longesttweetthereis::TaggedId",
"dumbRestApi::check_allProducts::ProductId", "dumbRestApi::check_allCustomers::CustomerId",
"twitter_ld_homepage:unknownApisCreateEdit::create_id::NewProfileId")
I am trying to extract the tail of the string that occurs after the last double-colons. Because of varying lengths and multiple occurrences of double-colons, I am finding it difficult to code this in R.
| Desired Result |
|---|
| value-twostancenpq |
| TaggedId |
| ProductId |
| CustomerId |
| NewProfileId |